I can get the first three characters with the function below.
However, how can I get the output of the last five characters ("Three") with the Substring()
function? Or will another string function have to be used?
static void Main()
{
string input = "OneTwoThree";
// Get first three characters
string sub = input.Substring(0, 3);
Console.WriteLine("Substring: {0}", sub); // Output One.
}