Implemented interface member:
property
Count
System.Collections.ICollection.Count
1 override of Count
mscorlib (1)
system\collections\sortedlist.cs (1)
568public override int Count {
37 references to Count
mscorlib (16)
system\collections\sortedlist.cs (16)
200if (value < Count) { 335if (array.Length - arrayIndex < Count) 338for (int i = 0; i<Count; i++) { 349KeyValuePairs[] array = new KeyValuePairs[Count]; 350for (int i = 0; i < Count; i++) { 372if (index < 0 || index >= Count) 399if (index < 0 || index >= Count) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 501if (index < 0 || index >= Count) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 527if (index < 0 || index >= Count) throw new ArgumentOutOfRangeException("index", Environment.GetResourceString("ArgumentOutOfRange_Index")); 569get { lock(_root) { return _list.Count; } } 871Array.Copy(sortedList.keys, 0, array, arrayIndex, sortedList.Count); 888return new SortedListEnumerator(sortedList, 0, sortedList.Count, SortedListEnumerator.Keys); 897sortedList.Count, key, sortedList.comparer); 958Array.Copy(sortedList.values, 0, array, arrayIndex, sortedList.Count); 975return new SortedListEnumerator(sortedList, 0, sortedList.Count, SortedListEnumerator.Values); 979return Array.IndexOf(sortedList.values, value, 0, sortedList.Count);
PresentationFramework (2)
src\Framework\System\Windows\Documents\AdornerLayer.cs (2)
431DictionaryEntry[] zOrderMapEntries = new DictionaryEntry[_zOrderMap.Count]; 465DictionaryEntry[] zOrderMapEntries = new DictionaryEntry[_zOrderMap.Count];
System (1)
net\System\Net\cookiecontainer.cs (1)
918return m_list.Count;
System.Management (3)
WmiGenerator.cs (3)
1222for(int i=0;i< PublicProperties.Count;i++) 2844for(int k=0;k< PublicMethods.Count;k++) 4630for (int i=0; i < sortedList.Count; i++)
System.Xml (12)
System\Xml\Schema\Preprocessor.cs (2)
120for (schemaIndex = 0; schemaIndex < lockList.Count; schemaIndex++) { 138if (schemaIndex == lockList.Count) {
System\Xml\Schema\SchemaSetCompiler.cs (1)
143for (schemaIndex = 0; schemaIndex < schemas.Count; schemaIndex++) {
System\Xml\Schema\XmlSchemaSet.cs (9)
193return schemas.Count; 461for (int i =0; i < schemas.Count; i++) { 519if (schemas.Count == 0) { 540for (schemaIndex = 0; schemaIndex < schemas.Count; schemaIndex++) { 578if (schemaIndex == schemas.Count) { 709for (int i=0; i < schemas.Count; i++) { 1076bool setIsCompiled = schemas.Count == 0 ? true : false; 1081for(int i=0; i < copyFromList.Count; i++) { 1272if (schemas.Count == 0) {
WindowsBase (3)
Base\System\IO\Packaging\CompoundFile\DataSpaceManager.cs (3)
491return _dataSpaceMap.Count; 1130if( 0 < _dataSpaceMap.Count ) 1155_dataSpaceMap.Count );