Skip to content

Instantly share code, notes, and snippets.

@autumnharmony
Created January 2, 2011 16:59
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 autumnharmony/762643 to your computer and use it in GitHub Desktop.
Save autumnharmony/762643 to your computer and use it in GitHub Desktop.
Битовые флаги C#
[Flags]
public enum AccessFlags{
NoAccess = 0x0,
ReadAccess = 0x1,
WriteAccess = 0x2,
ExecuteAccess = 0x4
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment