如何在c#中添加浮点数

如何在c#中添加浮点数

本文介绍了如何在c#中添加浮点数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我添加两行包含浮点数并将它们放入不同的行 我使用以下代码来执行此操作 xlWorkSheet1.Cells [i,5] = float(Convert.ToInt32(row [13])+ Convert.ToInt32(row1 [13])); 但我得到了以下错误: Error1无效的表达式术语'浮动' 任何人都可以帮我解决这个问题 谢谢 John 解决方案 编译器错误CS1525意味着您不太了解投射。您可以通过(浮点数)而不是浮点数来修复它。关于错误CS1525的更清楚,见下文。 http://msdn.microsoft.com/en-us/library/3hdyz4dw(v=vs.90).aspx [ ^ ] Hi,I am adding two rows which contain floating point numbers and placing them into different rowI am using following code to do that xlWorkSheet1.Cells[i, 5] = float(Convert.ToInt32(row[13]) + Convert.ToInt32(row1[13]));But I am getting following error:Error1 Invalid expression term 'float'Can anyone help me in solving thisThanksJohn 解决方案 这篇关于如何在c#中添加浮点数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-23 16:25