Beispiel #1
0
 private static int Main()
 {
     int NUM = 17;
     Column c1 = new Column();
     Column c2 = new Column();
     Column c3 = new Column();
     c1.Init(NUM, NUM);
     c2.Init(NUM, 0);
     c3.Init(NUM, 0);
     return 100;
 }
Beispiel #2
0
        private static int Main()
        {
            int    NUM = 17;
            Column c1  = new Column();
            Column c2  = new Column();
            Column c3  = new Column();

            c1.Init(NUM, NUM);
            c2.Init(NUM, 0);
            c3.Init(NUM, 0);
            return(100);
        }
Beispiel #3
0
        public static int TestEntryPoint()
        {
            int    NUM = 17;
            Column c1  = new Column();
            Column c2  = new Column();
            Column c3  = new Column();

            c1.Init(NUM, NUM);
            c2.Init(NUM, 0);
            c3.Init(NUM, 0);
            return(100);
        }