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