The three variants below give exactly the same color. TheThe last one has the benefit of being highlighted in VS2010the Visual Studio 2010 IDE (maybe itsit's ReSharper that's doing it) with proper color.
var cc1 = System.Drawing.ColorTranslator.FromHtml("#479DEE");
var cc2 = System.Drawing.Color.FromArgb(0x479DEE);
var cc3 = System.Drawing.Color.FromArgb(0x47, 0x9D, 0xEE);