コード例 #1
0
 public void Delete(InspectionSaveData Inspec)
 {
     for (int i = 0; i < ListOfInspections.Count; i++)
     {
         if (ListOfInspections[i].FileSaveName == Inspec.FileSaveName)
         {
             ListOfInspections.Remove(ListOfInspections[i]);
             i--;
         }
     }
 }
コード例 #2
0
 public void Clear()
 {
     ListOfInspections.Clear();
     ListOfReadings.Clear();
     MiscStorage.Clear();
 }
コード例 #3
0
 public void Store(InspectionSaveData Inspec)
 {
     ListOfInspections.Add(Inspec);
     Update();
 }