Searched defs:ICollection (Results 1 - 3 of 3) sorted by relevance

/external/protobuf/csharp/src/Google.Protobuf/Collections/
H A DRepeatedField.cs323 // TODO: Check for ICollection and get the Count, to optimize?
515 #region Explicit interface implementation for IList and ICollection.
518 void ICollection.CopyTo(Array array, int index)
523 bool ICollection.IsSynchronized { get { return false; } }
525 object ICollection.SyncRoot { get { return this; } }
H A DMapField.cs225 public ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey); } }
230 public ICollection<TValue> Values { get { return new MapView<TValue>(this, pair => pair.Value, ContainsValue); } }
271 void ICollection<KeyValuePair<TKey, TValue>>.Add(KeyValuePair<TKey, TValue> item)
290 bool ICollection<KeyValuePair<TKey, TValue>>.Contains(KeyValuePair<TKey, TValue> item)
302 void ICollection<KeyValuePair<TKey, TValue>>.CopyTo(KeyValuePair<TKey, TValue>[] array, int arrayIndex)
313 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item)
513 void ICollection.CopyTo(Array array, int index)
516 ICollection temp = this.Select(pair => new DictionaryEntry(pair.Key, pair.Value)).ToList();
522 ICollection IDictionary.Keys { get { return (ICollection)Key
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSubList.cs113 #region ICollection Members
171 public class SubList<T> : IList<T>, ICollection<T>, IEnumerable<T>, IList, ICollection, IEnumerable
200 #region ICollection Members
202 void ICollection.CopyTo( Array array, int index )
231 ICollection sourceCollection = _source as ICollection;
243 ICollection sourceCollection = _source as ICollection;
339 #region ICollection<
[all...]

Completed in 118 milliseconds