namespace VaioxOnline.My { using Microsoft.VisualBasic.ApplicationServices; using System; using System.CodeDom.Compiler; using System.ComponentModel; using System.Diagnostics; using System.Runtime.CompilerServices; using System.Windows.Forms; [GeneratedCode("MyTemplate", "11.0.0.0"), EditorBrowsable(EditorBrowsableState.Never)] internal class MyApplication : WindowsFormsApplicationBase { [DebuggerStepThrough] public MyApplication() : base(AuthenticationMode.Windows) { base.IsSingleInstance = false; base.EnableVisualStyles = true; base.SaveMySettingsOnExit = true; base.ShutdownStyle = ShutdownMode.AfterMainFormCloses; } [MethodImpl(MethodImplOptions.NoOptimization | MethodImplOptions.NoInlining), STAThread, DebuggerHidden, EditorBrowsable(EditorBrowsableState.Advanced)] internal static void Main(string[] Args) { try { Application.SetCompatibleTextRenderingDefault(WindowsFormsApplicationBase.UseCompatibleTextRendering); } finally { } MyProject.Application.Run(Args); } [DebuggerStepThrough] protected override void OnCreateMainForm() { base.MainForm = MyProject.Forms.VotePlay; } } }