take the last n string C# code example
Example 1: c# get last two characters of string
var result = str.Substring(str.Length - 2);
Example 2: c# get last character of string
mystring.Substring(mystring.Length - 4);
var result = str.Substring(str.Length - 2);
mystring.Substring(mystring.Length - 4);