C Sharp (C#) - Strings and StringBuilder
What will be the output of this code?
string text = "Hello World"; string part = text.Substring(6); Console.WriteLine(part);
