Cosmos/source/Playgrounds/Ralf/PCIHelper/Program.cs
ralfkronemeyer_cp ceca79c5e0 PCIVendors
2008-06-30 09:48:14 +00:00

21 lines
501 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Windows.Forms;
namespace PCIHelper
{
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());
}
}
}