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