Exemplo n.º 1
0
 public void Remove( SearchResult value )
 {
     List.Remove( value );
 }
Exemplo n.º 2
0
 public void Insert( int index, SearchResult value )
 {
     List.Insert( index, value );
 }
Exemplo n.º 3
0
 public bool Contains( SearchResult value )
 {
     // If value is not of type SearchResult, this will return false.
     return( List.Contains( value ) );
 }
Exemplo n.º 4
0
 public int IndexOf( SearchResult value )
 {
     return( List.IndexOf( value ) );
 }
Exemplo n.º 5
0
 public int Add( SearchResult value )
 {
     return( List.Add( value ) );
 }