Files
SmartThreadPool/WorkItemsGroupDemo/Program.cs
T
Ami Bar 4d6ffb5851 v2.0
SmartThreadPool v2.0
2009-12-19 16:32:41 +02:00

20 lines
473 B
C#

using System;
using System.Collections.Generic;
using System.Windows.Forms;
namespace WorkItemsGroupDemo
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
public static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}