如何修复 "Argument 1: cannot convert from 'double' to 'string'"?
How to fix "Argument 1: cannot convert from 'double' to 'string'"?
我目前正在创建一个点钞机应用程序,但在这一行出现错误:MessageBox.Show(total);
。
有人能帮我吗?
错误:Argument 1: cannot convert from 'double' to 'string'
代码:https://www.toptal.com/developers/hastebin/remifuxisi
您必须使用 ToString() 将双精度数转换为字符串。
MessageBox.Show(total.ToString());
我目前正在创建一个点钞机应用程序,但在这一行出现错误:MessageBox.Show(total);
。
有人能帮我吗?
错误:Argument 1: cannot convert from 'double' to 'string'
代码:https://www.toptal.com/developers/hastebin/remifuxisi
您必须使用 ToString() 将双精度数转换为字符串。
MessageBox.Show(total.ToString());