VBSの代替検討中。
using System.Windows.Forms;
namespace myapp
{
class Program
{
public static void Main(string[] args)
{
// MessageBoxを表示する
MessageBox.Show( "Hellow World!","C#",
MessageBoxButtons.OK,
MessageBoxIcon.Information );
}
}
}
端末で.exeに変換しダブルクリックで実行
コメント