コード例 #1
0
 public bool Remove(TValue item)
 {
     return(values.Remove(item));
 }
コード例 #2
0
ファイル: JavaCollectionWrapper.cs プロジェクト: slagusev/api
 /// <summary>
 /// Remove the given item from this collection.
 /// </summary>
 /// <returns>True if the item was removed, false otherwise.</returns>
 public bool Remove(T item)
 {
     return(collection.Remove(item));
 }
コード例 #3
0
 public bool Remove(TKey item)
 {
     return(keys.Remove(item));
 }
コード例 #4
0
 public bool Remove(TKey item)
 {
     return(keys.Remove(new KeyWrapper <TKey>(item, comparer)));
 }