ImはVisual Studioで文字列をintに変換しようとしていますが、いつでもその文字列をrefrenceしようとしているものを拾うようです。文字列をIntに変換しようとしています
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 WindowsFormsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void points1_TextChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
int x = Int32.Parse(textbox1.Text);
resultBox.Text =
}
}
}
ソリューションオンラインのdidntはまったく機能しているように見えるので、私は本当に、何かを見つける傾けます。
*これを別の言い方で説明することはできませんか?あなたが何を意味しているのか理解できない。 –
さらに、「オンラインのソリューションはまったく機能していないので、何も見つかりません。」不明です。どのような解決策がありますか? – HimBromBeere
あなたのxはintに変換されています...あなたの問題は何ですか? – kurakura88