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

18 lines
345 B
C#

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