root/lang/csharp/Criw-0/Program.cs

Revision 1736, 424 bytes (checked in by mayuki, 14 months ago)

lang/csharp: WZERO3などで動くIRCクライアントのサンプル実装 Criw-0 を追加。

  • Property svn:keywords set to Id
Line 
1using System;
2using System.Collections.Generic;
3using System.Windows.Forms;
4
5namespace Misuzilla.Applications.Mobile.Criw0
6{
7    static class Program
8    {
9        /// <summary>
10        /// アプリケーションのメイン エントリ ポイントです。
11        /// </summary>
12        [MTAThread]
13        static void Main()
14        {
15            Application.Run(new MainForm());
16        }
17    }
18}
Note: See TracBrowser for help on using the browser.