Skip to content

Instantly share code, notes, and snippets.

@Josef212
Created April 11, 2019 11:18
Show Gist options
  • Save Josef212/0ae8ab83106f18eaa89de07c44437357 to your computer and use it in GitHub Desktop.
Save Josef212/0ae8ab83106f18eaa89de07c44437357 to your computer and use it in GitHub Desktop.
public static class Extensions
{
public static string TrimDouble(this string temp)
{
var value = temp.IndexOf('.') == -1 ? temp : temp.TrimEnd('.', '0');
return value == string.Empty ? "0" : value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment