// See https://aka.ms/new-console-template for more information
Shapefile sh1 = new Shapefile("punto", "UTM Z18S", 1);
Shapefile sh2 = new Shapefile("linea", "UTM Z18S", 2);
Shapefile[] arrayShapefile= new Shapefile[2];
arrayShapefile[0] = sh1;
arrayShapefile[1] = sh2;
arrayShapefile[0].getShapefile1();
arrayShapefile[1].getShapefile1();
class Shapefile
{
//Propiedades
string geometria;
string sistemaref;
int cantidad;
//Definición Constructor
public Shapefile(string geometria, string sistemaref, int cantidad)
{
this.geometria = geometria;
this.sistemaref = sistemaref;
this.cantidad = cantidad;
}
public void getShapefile1()
{
Console.WriteLine(geometria);
Console.WriteLine(sistemaref);
Console.WriteLine(cantidad);
}
}
No hay comentarios.:
Publicar un comentario