c# – 如何将RGB int值转换为字符串颜色

前端之家收集整理的这篇文章主要介绍了c# – 如何将RGB int值转换为字符串颜色前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
任何人都可以告诉我如何将三个int vales r,g,b转换为C#中的字符串颜色(hexa值)

解决方法

int red = 255;
int green = 255;
int blue = 255;

string theHexColor = "#" + red.ToString("X2") + green.ToString("X2") + blue.ToString("X2");
原文链接:https://www.f2er.com/csharp/96892.html

猜你在找的C#相关文章