← Back to Question List
C# Quiz #16
Substring Result
What does this code print?
📄 Code
1string s = "Hello";2Console.WriteLine(s.Substring(1, 3));
What does this code print?
1string s = "Hello";2Console.WriteLine(s.Substring(1, 3));