snap-2-html/Snap2HTML/Program.cs
2017-04-22 17:40:03 +02:00

21 lines
476 B
C#

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