7 writes to Capacity
mscorlib (2)
system\collections\generic\list.cs (2)
412Capacity = newCapacity; 1019Capacity = _size;
PresentationFramework (1)
src\Framework\System\Windows\Input\KeyboardNavigation.cs (1)
3701_list.Capacity = newCapacity;
System.Core (1)
Microsoft\Scripting\Compiler\StackSpiller.Temps.cs (1)
189comma.Capacity = comma.Count + 1;
System.Data (1)
fx\src\data\System\Data\RecordManager.cs (1)
152freeRecordList.Capacity = freeRecordList.Count + table.Rows.Count;
System.ServiceModel (2)
System\ServiceModel\Dispatcher\QuerySubExprEliminator.cs (2)
250this.children.Capacity = this.children.Count; 614this.exprList.Capacity = this.exprList.Count;
6 references to Capacity
mscorlib (1)
system\threading\Tasks\Task.cs (1)
4770if (list.Count == list.Capacity)
PresentationFramework (2)
src\Framework\System\Windows\Input\KeyboardNavigation.cs (2)
3611if (_list.Count == _list.Capacity) 3699if (newCapacity < _list.Capacity)
System.Core (1)
Microsoft\Scripting\Compiler\StackSpiller.Temps.cs (1)
207Debug.Assert(_comma.Capacity == _comma.Count + 1);
System.Data.Entity (2)
System\Data\Metadata\Edm\MetadataCollection.cs (2)
704if (UseSortedListCrossover <= this.OrderedList.Capacity) 706this.IdentityDictionary = new Dictionary<string, OrderedIndex>(this.OrderedList.Capacity, StringComparer.OrdinalIgnoreCase);