我正在尝试制作一个将数字加在一起的程序,直到用户输入0,但我不断收到此错误:
System.FormatException:'输入字符串的格式不正确。'
这是我的代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace összeadó
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
int szam = 0;
string osszeg = (textBox1.Text);
int osszegecske = Convert.ToInt16(osszeg); <-- at this part i get the error
while (osszegecske != 0)
{
textBox1.Text = "";
szam = szam + osszegecske;
}
MessageBox.Show(szam.ToString());
}
}
}