#region
|
|
using System;
|
using System.Windows.Forms;
|
|
#endregion
|
|
namespace CSFrameworkV5.UserCustom
|
{
|
internal static class Program
|
{
|
/// <summary>
|
/// The main entry point for the application.
|
/// </summary>
|
[STAThread]
|
private static void Main()
|
{
|
Application.EnableVisualStyles();
|
Application.SetCompatibleTextRenderingDefault(false);
|
Application.Run(new frmUserCustomMain());
|
}
|
}
|
}
|