Esempio n. 1
0
 public Location(string name)
 {
     this.name = name;
     adjacent  = new EdgeList();
 }
Esempio n. 2
0
 //Constructors/Destructor
 public Location()
 {
     name     = null;
     adjacent = new EdgeList();
 }