public void Remove( SmtpServerAddress value )
 {
     List.Remove( value );
 }
 public int IndexOf( SmtpServerAddress value )
 {
     return( List.IndexOf( value ) );
 }
 public void Insert( int index, SmtpServerAddress value )
 {
     List.Insert( index, value );
 }
 public int Add( SmtpServerAddress value )
 {
     return( List.Add( value ) );
 }