2011-06-21 24 views
0

文字列をTextBox値から設定しようとしています。テキストボックスの値から文字列値を設定する方法

などの文字列値を設定しようとしています。

private void testing_Click(object sender, EventArgs e) 
     { 

      Set <string> = TextBox.Text 

     } 

どうすればこのことができますか?

+0

あなたは、文字列変数にTextBox.Text値を割り当てるかTextBox.Textを含ん設定を作成しようとしていますか? – FishBasketGordo

答えて

3

単語セットは必要ありません。文字列がすでに宣言されている場合は、宣言を削除できます。

string yourString = TextBox.Text; 
+0

あなたはあなたが使用できる文字列を言う必要はありませんvar yourstring = TextBox.Text – boca

0
private void testing_Click(object sender, EventArgs e) 
{ 
    string textOfTextBox = ((TextBox) sender).Text; 
    MessageBox.Show (textOfTextBox); 
} 
関連する問題