Ejemplo n.º 1
0
 public static void Main(string[] args)
 {
     Interchange I1= new Interchange();
     I1.Swap();
     I1.Display();
     Console.ReadLine();
 }
Ejemplo n.º 2
0
    public static void Main(string[] args)
    {
        Interchange I1 = new Interchange();

        I1.Swap();
        I1.Display();
        Console.ReadLine();
    }
Ejemplo n.º 3
0
    static void Main()
    {
        Interchange I1 = new Interchange();

        I1.Swap();
        I1.Display();
        Console.ReadLine();
    }