Visual Studio for mac で
C#
1using System.Windows.Forms; 2 3class Sample1 4{ 5 public static void Main() 6 { 7 Form fm; 8 fm = new Form(); 9 fm.Text = "ようこそ"; 10 Application.Run(fm); 11 } 12}
以上のようなコードを実行したいのですが、
mono64が予期しない理由で終了しました。
と出ます。
ビルドはエラーなく終了しているので、このようになる原因がわかりません。
もし分かる方がいれば教えてください。
あなたの回答
tips
プレビュー