root/lang/csharp/Translater/Program.cs

Revision 15264, 477 bytes (checked in by seasons, 6 months ago)

翻訳エンジンプラグイン作成サンプル
実際に使ってみたい人は、bin/Debug/Jisho.exeを実行するとよろし。

Line 
1using System;
2using System.Collections.Generic;
3using System.Windows.Forms;
4
5namespace Jisho
6{
7    static class Program
8    {
9        /// <summary>
10        /// The main entry point for the application.
11        /// </summary>
12        [STAThread]
13        static void Main()
14        {
15            Application.EnableVisualStyles();
16            Application.SetCompatibleTextRenderingDefault(false);
17            Application.Run(new Form1());
18        }
19    }
20}
Note: See TracBrowser for help on using the browser.