私はC#で新しいです。私は誰かが私を助けることを願っているStringをFloat/Intに変換するときのエラー。 C#Windows Forms
私は小さなWindowsフォームアプリケーションをプログラミングしています。 2つのテキストボックスと1つの結果ラベル。 私は数時間、textBoxのStringsから浮動小数点値を取得しようとしています。 後で、TextBox1にたとえば1.25などを書き込んで、2番目のTextBoxの値で割ります。
私は多くのコードを試しました。コードが動作している場合(赤い下線で表示されていない場合)
エラーメッセージ: "mscorlib.dllのSystem.Format.Exceptionのエラーの種類"。 "入力された文字列の形式が間違っています"。
どうすればこの問題を解決できますか?それとも、私は何が間違っているのですか?助けてください。私はNoobです。
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
string a = textBox1.Text;
string b = textBox2.Text;
float num = float.Parse(textBox1.Text);
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
}
}
}
`
あなたはしていませんフォームのコンストラクタで計算を実行します。フォームのコンストラクタでは、まだユーザーがテキストを入力していません。おそらく、 'button1_Click'に' float num = float.Parse(textBox1.Text);が必要です。 – adv12
これは助けになりました!どうもありがとうございました! –