无法弄清楚为什么我的代码不起作用

时间:2018-01-11 19:13:43

标签: c#

我正在尝试制作一个将数字加在一起的程序,直到用户输入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());

        }
    }
}

1 个答案:

答案 0 :(得分:1)

使用Int16.TryParse代替Convert.ToInt16。