Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- internal static class HexToColorExtension
- {
- public static Color Rgb(this int hex)
- {
- return Color.FromRgb((byte)(hex >> 16), (byte)(hex >> 8), (byte)(hex >> 0));
- }
- public static Color Argb(this uint hex)
- {
- return Color.FromArgb((byte)(hex >> 24), (byte)(hex >> 16), (byte)(hex >> 8), (byte)(hex >> 0));
- }
- public static Color Argb(this int hex)
- {
- return Color.FromArgb((byte)(hex >> 24), (byte)(hex >> 16), (byte)(hex >> 8), (byte)(hex >> 0));
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment