コード例 #1
0
ファイル: Location.cs プロジェクト: NotedToSelf/Deliveries
 public Location(string name)
 {
     this.name = name;
     adjacent  = new EdgeList();
 }
コード例 #2
0
ファイル: Location.cs プロジェクト: NotedToSelf/Deliveries
 //Constructors/Destructor
 public Location()
 {
     name     = null;
     adjacent = new EdgeList();
 }