private void buttonConvert_Click(object sender, EventArgs e)
{
//Convert number from C to F
double convertDecimal;
convertDecimal = 1.8;
textBoxF = double.Parse(textBoxC.Text) * double(convertDecimal) + 32;
^here is where I get the error
エラー 1 無効な表現用語 'double'
私はプログラミングにかなり慣れていませんが、数値の加算、減算、除算、または乗算を試みることに頭を悩ませることはできません。私は単純な単純な変換をしようとしています。摂氏のテキスト ボックスから数値を取得し、華氏に変換します。数字の部分だけわからない???
ご協力いただきありがとうございます!