gpt4 book ai didi

c# - 我想添加两个或多个文本框的值

转载 作者:行者123 更新时间:2023-11-30 19:24:47 25 4
gpt4 key购买 nike

所以我想制作一个程序,我可以将两个或多个文本框中的值加在一起。你可以在picture 上看到我想把spm1和spm2加在一起,让值显示在>points

感谢任何帮助!

private void btnsum_Click(object sender, EventArgs e) {
Convert.ToInt32(txtspm1.Text.ToString());
Convert.ToInt32(txtspm2.Text.ToString());
sum = txtspm2.Text+txtspm1.Text;
lblsum.Text = sum.ToString();

最佳答案

sum = txtspm2.Text+txtspm1.Text

.Text 返回一个字符串值,因此这是连接两个字符串,而不是添加两个整数。将值转换为整数,然后将它们相加。

关于c# - 我想添加两个或多个文本框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33222853/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com