yep,
int red = Convert.ToInt32("FF", 16);
int blue = Convert.ToInt32("FF", 16);
int green = Convert.ToInt32("FF", 16);
System.Drawing.Color.FromArgb(red, blue, green);
I think. The 16 value is the base from which to convert the string value. In this case, obv 16 == hex.