Skip to content

Instantly share code, notes, and snippets.

@angelovstanton
Created September 12, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save angelovstanton/45faf5727d0e143437f9 to your computer and use it in GitHub Desktop.
Save angelovstanton/45faf5727d0e143437f9 to your computer and use it in GitHub Desktop.
[Flags]
public enum DigitsFormattingSettingsBitShifting
{
None = 0,
NoComma = 1 << 0,
PrefixDollar = 1 << 1,
PrefixMinus = 1 << 2,
SufixDollar = 1 << 3
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment