Files
SmartThreadPool/STPCEDemo/Program.cs
T
2009-12-19 17:33:30 +02:00

17 lines
311 B
C#

using System;
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());
}
}
}