首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > C# >

double转string的有关问题

2012-05-28 
double转string的问题textBox3.Text Convert.ToInt32(textBox1.Text) * (0.003102 * 17.16 + 0.1)无法

double转string的问题
textBox3.Text = Convert.ToInt32(textBox1.Text) * (0.003102 * 17.16 + 0.1);

无法将类型“double”隐式转换为“string”,

textbox1.Text,这个值怎么转?

[解决办法]
float f = Convert.ToInt32(textBox1.Text) * (0.003102 * 17.16 + 0.1);
textBox3.Text = f.ToString();
[解决办法]

C# code
if (comboBox1.Text == "新胶袋" && comboBox2.Text == "5.5cm"){  double f;  f= double.Parse(textBox1.Text) * (0.003102 * 17.16 + 0.1);  textBox3.Text=f.ToString();} 

热点排行