我正在使用string.Format将颜色值转换为字符串。
如何将相同的值转换为float。 这是我做的代码。
public string RGBToU(Color col)
{
string temp = string.Format(" aRGB({0}, {1}, {2})",
col.R / 255.0 ,
col.G / 255.0,
col.B / 255.0
);
return temp;
}
答案 0 :(得分:1)
使用Float.valueOf(String)转换