← Back to Question List
C# Code Walkthrough #27
String vs Number Concatenation
📄 Code
Read carefully — what does this print?1Console.WriteLine(1 + 2 + "3");2Console.WriteLine("1" + 2 + 3);