Advertisement
FrayxRulez

Untitled

Dec 12th, 2014
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. public static Color FromUInt32WithoutAlpha(uint hex)
  2. {
  3. return Color.FromArgb(255, (byte)((hex & 16711680) >> 16), (byte)((hex & 65280) >> 8), (byte)(hex & 255));
  4. }
  5.  
  6. 14240870
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement