转换问题sting到int

转换问题sting到int

本文介绍了转换问题sting到int的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨朋友们,

我是C#的新手,



我正在将vb.net项目转换为C#







 txtowndmgamt1000.Text = Math.Round(Convert.ToDouble(txttot1000.Text) - Convert.ToDouble(txtcnbamt1000.Text)

);





无法隐式转换类型'双'到'字符串'



请帮助我....

提前致谢..

解决方案



Hi friends,
I am new in C#,

I am converting vb.net project into C#



txtowndmgamt1000.Text = Math.Round(Convert.ToDouble(txttot1000.Text) - Convert.ToDouble(txtcnbamt1000.Text)

);


Cannot implicitly convert type 'double' to 'string'

Please Help me....
Thanks in advance..

解决方案



这篇关于转换问题sting到int的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 17:31