C Sharp (C#) - Strings and StringBuilder
What will be the output of this code?
string s = " Trim me "; string trimmed = s.Trim(); Console.WriteLine(trimmed.Length);
