public void Remove(EmailElement e) { if (BaseIndexOf(e) >= 0) { BaseRemove(e.onErrorCode); } }
public EmailCollection() { EmailElement e = (EmailElement)CreateNewElement(); if (e.onErrorCode != "") { Add(e); } }
public void Add(EmailElement e) { BaseAdd(e); }
public int IndexOf(EmailElement e) { return(BaseIndexOf(e)); }