Beispiel #1
0
 public Launch()
 {
     Name          = "Launch";
     IsStatic      = true;
     DeclaringType = new DesktopFormsExtensions();
     ReturnType    = new KnownStockTypes.System.Object();
 }
Beispiel #2
0
        public static void Main(string[] args)
        {
#if DEBUG
            DesktopFormsExtensions.Launch(
                () => new ApplicationControl()
                );
#else
            RewriteToUltraApplication.AsProgram.Launch(typeof(Application));
#endif
        }
Beispiel #3
0
        public static void Main(string[] args)
        {
#if DEBUG
            if (Debugger.IsAttached)
            {
                DesktopFormsExtensions.Launch(
                    () => new ApplicationControl()
                    );
            }
#endif
            RewriteToUltraApplication.AsProgram.Launch(typeof(Application));
        }
 public Launch()
 {
     Name = "Launch";
     IsStatic = true;
     DeclaringType = new DesktopFormsExtensions();
     ReturnType = new KnownStockTypes.System.Object();
 }