示例#1
0
文件: Parking.cs 项目: Alfouss/.NET
 public void garerVoiture(Voiture v)
 {
     if (cpt < 5)
     {
         tabVoiture[cpt] = v;
         cpt++;
     }
     else
     {
         throw new ParkingException("Pas de place dans le parking");
     }
 }
示例#2
0
文件: Parking.cs 项目: Alfouss/.NET
 public Parking()
 {
     tabVoiture = new Voiture[5];
 }