如何在没有脚本的情况下在C#中使用消息框?
答案 0 :(得分:9)
您尚未真正指定目标应用程序类型,因此:
对于控制台应用程序:
Console.WriteLine("hello world");
对于WinForms /桌面应用程序:
MessageBox.Show("hello world");
对于网络应用程序:
alert('hello world');
或者您也可以使用javascript和jquery实现custom dialogs。
答案 1 :(得分:2)
MessageBox.Show()
你试过googling吗?