uint color; bool parsedhex = uint.TryParse(TextBox1.Text, out color); //where Text is of the form 0xFF0000if(parsedhex) //...不起作用。我究竟做错了什么?
3 回答
慕尼黑的夜晚无繁华
TA贡献1864条经验 获得超6个赞
尝试
Convert.ToUInt32(hex, 16) //Using ToUInt32 not ToUInt64, as per OP comment
- 3 回答
- 0 关注
- 661 浏览
添加回答
举报
0/150
提交
取消