Example #1
0
 static void Main(string[] args)
 {
     PartialClass1 p = new PartialClass1();
     p.Method1();
     p.Method2();
     p.Method3();
     p.Method4();
     Console.ReadLine();
 }
Example #2
0
        static void Main(string[] args)
        {
            PartialClass1 p = new PartialClass1();

            p.Method1();
            p.Method2();
            p.Method3();
            p.Method4();
            Console.ReadLine();
        }