C# Color constant R,G,B values
Posted
by TK
on Stack Overflow
See other posts from Stack Overflow
or by TK
Published on 2008-10-22T14:22:48Z
Indexed on
2010/04/17
23:13 UTC
Read the original article
Hit count: 582
Where can I find a list of all the C# Color constants and the associated R,G,B (Red, Green, Blue) values?
e.g.
Color.White == (255,255,255)
Color.Black == (0,0,0)
etc...
© Stack Overflow or respective owner