Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            INT.Test();
            STRING.Test();
            ARRAY <int> .Test();

            TWO_INT.Test();
            INT_2.Test();
            STRING_2.Test();
        }
Ejemplo n.º 2
0
        public static new void Test()
        {
            Console.WriteLine("\nTest TWO_INT\n");
            TWO_INT ti = new TWO_INT(10, 20);

            Console.WriteLine("Value #1: {0}\nValue #2: {1}",
                              ti.Value,
                              ti.Value_2
                              );
            Console.ReadKey();
        }