Exemple #1
0
 public static void InitializeBikeStation(BikeStation[] targets)
 {
     for (int i = 0; i < targets.Length; i++)
     {
         targets[i] = new BikeStation();
     }
 }
Exemple #2
0
 public BikeStation()
 {
     BikeStation.IncrementStationID();
     this.Id        = BikeStation.StationCounter;
     this.BikeRacks = new List <BikeRack>(50);
     this.InitializeBikeRacks();
     this.StationStatus = false;
     //this.MyIO = new IO();
 }