/ComControlTest/Program.cs
# · C# · 21 lines · 17 code · 1 blank · 3 comment · 0 complexity · cfd7c738d9358b7f363f79c8cbb564f8 MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Windows.Forms;
-
- namespace ComControlTest
- {
- static class Program
- {
- /// <summary>
- /// The main entry point for the application.
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new Form1());
- }
- }
- }