← Back to Question List
C# Code Walkthrough #15
Strings Are Immutable
📄 Code
Read carefully — what does this print?1string s = "hello";2s.ToUpper();3Console.WriteLine(s);
1string s = "hello";2s.ToUpper();3Console.WriteLine(s);