C Sharp (C#) - Strings and StringBuilder
What is the output of the following code?
string s = "Hello World"; string result = s.Substring(6, 5); Console.WriteLine(result);
