ユーザーからの入力で 10 進数を 2 進数に変換する ac# アプリケーションを作成したいと考えています。bin = Convert.ToString(decToBin,2); を宣言すると、ビンに赤い波線が表示されます。私は自分の問題を理解していないので、助けていただければ幸いです。
int decToBin;
Console.WrinteLine("Enter a number that will be converted to binary")
decToBin = Int32.Parse(Console.Readline());
bin = Convert.ToString(decToBin,2);
Console.ReadKey();