last three no. from a string using c# code example
Example 1: c# get last character of string
string str = "Hello World";
string substr = str.Substring(str.Length - 1);
Example 2: last two characters of string c#
string str = "Hello World";
string substr = str.Substring(str.Length - 2);