public static string GetColorValue(Color C) { string _Temp = "#" + C.R.ToString("X02") + C.G.ToString("X02") + C.B.ToString("X02"); return _Temp; }