Suppose I have a string:
\"34234234d124\"
I want to get the last four characters of this string which is \"d124\". I can use <
\"d124\"
It is just this:
int count = 4; string sub = mystring.Substring(mystring.Length - count, count);