How do I get the rightmost part of a string?
str.Substring(str.Length);
str.Substring(str.Length - 1);
str.LastChar();
str.RightChar();