The + Operator Is Left Associative

image_pdfimage_print
   
  


using System;

public class MainClass {
    public static void Main() {

        Console.WriteLine(10 + 25 + "A");   // Same as (10 + 25) + "A", that is "35A" 
        Console.WriteLine("A" + 10 + 25);   // Same as ("A" + 10) + 25, that is "A1025" 

    }

}