Skip to content

Instantly share code, notes, and snippets.

@arphox
Created May 15, 2019 06:33
Show Gist options
  • Save arphox/48c35e4c370941747f04659a6c9ecb34 to your computer and use it in GitHub Desktop.
Save arphox/48c35e4c370941747f04659a6c9ecb34 to your computer and use it in GitHub Desktop.
Efficient enum HasFlag implementation
public static class MyExtensions
{
public static bool IsSet(this Color self, Color flag)
{
return (self & flag) == flag;
}
}
@arphox
Copy link
Author

arphox commented May 15, 2019

Shared on Medium, don't delete!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment