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[,] tb = new TextBox[x,y];
たとえば、TextBox[0,0] から値を読み取るにはどうすればよいですか?
Textプロパティを使用します。単一の TextBox の場合と同じです。
Console.WriteLine(tb[0,0].Text);
tbコードで定義した変数名でアクセスすることを忘れないでください。TextBox 配列にわかりやすい名前を付けた方がよい場合があります。
tb