Skip to content

Instantly share code, notes, and snippets.

@habibillah
Created May 15, 2011 10:09
Show Gist options
  • Save habibillah/973024 to your computer and use it in GitHub Desktop.
Save habibillah/973024 to your computer and use it in GitHub Desktop.
Substring from right
public class Utils
{
public static string Right(string param, int length)
{
string result = param.Substring((param.Length - length), length);
return result;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment