Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
textBoxアルファベット文字を整数に変換するにはどうすればよいですか?
textBox
たとえば、ユーザーが に入力"B"した場合、数値textBoxに変換しようとしていますB1
"B"
B
1
string a = textBox1.Text int number = 1; number = int.Parsed (a); messageBox.Show(number.ToString());