get last 3 characters of string 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);
Example 3: c# get last character of string
mystring.Substring(mystring.Length - 4);