Advertisement
Guest User

Untitled

a guest
May 25th, 2019
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. public static class MyExtensions
  2. {
  3. public static bool IsSet(this Color self, Color flag)
  4. {
  5. return (self & flag) == flag;
  6. }
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement