namespace ConsoleApp27
{
internal class Program
{
static void Main(string[] args)
{
Shapefile[] gdb = new Shapefile[3];
gdb[0] = new Shapefile("vias", "line", "UTM Z18S");
gdb[1] = new Shapefile("poblados", "point", "UTM Z18S");
gdb[2] = new Shapefile("locacion", "polygon", "UTM Z18S");
gdb[0].getShapefile();
gdb[1].getShapefile();
gdb[2].getShapefile();
}
}
class Shapefile
{
string nombre;
string geometria;
string sistemaRef;
public Shapefile(string nombre, string geometria, string sistemaRef)
{
this.nombre = nombre;
this.geometria = geometria;
this.sistemaRef = sistemaRef;
}
public void getShapefile()
{
Console.WriteLine("Nombre: "+nombre+" /Geometria: "+geometria+"/ Sistema: "+sistemaRef);
}
}
}
No hay comentarios.:
Publicar un comentario