Questions tagged «formatexception»

8
输入的字符串格式不正确
我是C#的新手,我具有Java的一些基本知识,但无法正常运行此代码。 它只是一个基本的计算器,但是当我运行程序VS2008时,出现此错误: 我做了几乎相同的程序,但是在Java中使用JSwing,它运行良好。 这是c#的形式: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace calculadorac { public partial class Form1 : Form { int a, b, c; String resultado; public Form1() { InitializeComponent(); a = Int32.Parse(textBox1.Text); b = Int32.Parse(textBox2.Text); } private void button1_Click(object …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.