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.
C#アプリケーションに変数charcとtextbox1TextBox があります。私はこれをしたい:
char
TextBox
textbox1.Text = (c + 2).ToString(); //this doesn't work, sure
例えば:
c = 'b'; textbox1.Text = "d";
これどうやってするの?
なぜみんながintにキャストしているのかわからない...
textbox1.Text = ((char)(c + 2)).ToString();
textbox1.Text = ((char)(((int)c) + 2)).ToString();
これを試して -
textbox1.Text = Convert.ToChar((int)c +2).ToString()