Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/FeliCa2Money.net/Program.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 79 - (show annotations) (download)
Sat Feb 23 07:11:17 2008 UTC (16 years, 3 months ago) by tmurakam
File size: 1330 byte(s)
copyright
1 /*
2 * FeliCa2Money
3 *
4 * Copyright (C) 2001-2008 Takuya Murakami
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19 */
20
21 using System;
22 using System.Collections.Generic;
23 using System.Windows.Forms;
24
25 namespace FeliCa2Money
26 {
27 static class Program
28 {
29 /// <summary>
30 /// アプリケーションのメイン エントリ ポイントです。
31 /// </summary>
32 [STAThread]
33 static void Main()
34 {
35 Application.EnableVisualStyles();
36 Application.SetCompatibleTextRenderingDefault(false);
37 Application.Run(new MainForm());
38 }
39 }
40 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26