static void realizarTarea()
        {
            Punto origen = new Punto();  //constructor por defecto

            Punto destino = new Punto(128, 80);
        }
示例#2
0
 static void realizarTarea()
 {
     Punto origen  = new Punto();
     Punto destino = new Punto(128, 80);
 }