Beispiel #1
0
 public void Remove(MigConstant migConstant)
 {
     if (BaseIndexOf(migConstant) >= 0)
     {
         BaseRemove(migConstant.Key);
         // Your custom code goes here.
         Console.WriteLine("MigConstantsCollection: {0}", "Removed collection element!");
     }
 }
Beispiel #2
0
 public void Add(MigConstant migConstant)
 {
     BaseAdd(migConstant);
     // Your custom code goes here.
 }
Beispiel #3
0
 public int IndexOf(MigConstant migConstant)
 {
     return(BaseIndexOf(migConstant));
 }