Created
January 2, 2011 16:59
-
-
Save autumnharmony/762643 to your computer and use it in GitHub Desktop.
Битовые флаги C#
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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