Example #1
0
 public FormGrafo2(Grafo g, Ciudad c)
 {
     InitializeComponent();
     this.g  = g;
     this.c1 = c;
 }
Example #2
0
 public Nodo(Ciudad c)
 {
     la     = new List <Ady>();
     this.c = c;
 }