24 implementations of Count
mscorlib (13)
system\arraysegment.cs (1)
96
public int
Count
system\Collections\Concurrent\ConcurrentDictionary.cs (1)
998
public int
Count
system\Collections\Concurrent\ConcurrentQueue.cs (1)
394
public int
Count
system\Collections\Concurrent\ConcurrentStack.cs (1)
203
public int
Count
system\collections\generic\dictionary.cs (3)
131
public int
Count
{
836
public int
Count
{
1023
public int
Count
{
system\collections\generic\list.cs (1)
137
public int
Count
{
system\collections\objectmodel\collection.cs (1)
38
public int
Count
{
system\collections\objectmodel\readonlycollection.cs (1)
34
public int
Count
{
system\collections\objectmodel\readonlydictionary.cs (3)
119
public int
Count
{
391
public int
Count
{
490
public int
Count
{
System (10)
compmod\system\collections\generic\linkedlist.cs (1)
55
public int
Count
{
compmod\system\collections\generic\queue.cs (1)
91
public int
Count
{
compmod\system\collections\generic\sorteddictionary.cs (3)
112
public int
Count
{
526
public int
Count
{
681
public int
Count
{
compmod\system\collections\generic\sortedlist.cs (1)
271
public int
Count
{
compmod\system\collections\generic\sortedset.cs (1)
291
public int
Count
{
compmod\system\collections\generic\stack.cs (1)
91
public int
Count
{
sys\system\collections\concurrent\BlockingCollection.cs (1)
114
public int
Count
sys\system\collections\concurrent\ConcurrentBag.cs (1)
657
public int
Count
System.Core (1)
System\Collections\Generic\HashSet.cs (1)
326
public int
Count
{
24 references to Count
mscorlib (10)
system\runtime\interopservices\windowsruntime\constantsplittablemap.cs (2)
57
this.lastItemIndex = data.
Count
- 1;
58
this.items = CreateKeyValueArray(data.
Count
, data.GetEnumerator());
system\runtime\interopservices\windowsruntime\ireadonlydictionarytoimapviewadapter.cs (2)
60
return (uint)_this.
Count
;
77
if (_this.
Count
< 2) {
system\runtime\interopservices\windowsruntime\ireadonlylisttoivectorviewadapter.cs (6)
42
EnsureIndexInt32(index, _this.
Count
);
60
return (uint)_this.
Count
;
70
int max = _this.
Count
;
99
if (startIndex == _this.
Count
)
102
EnsureIndexInt32(startIndex, _this.
Count
);
109
uint itemCount = Math.Min((uint)items.Length, (uint)_this.
Count
- startIndex);
PresentationFramework (14)
src\Framework\System\Windows\Documents\NLGSpellerInterop.cs (6)
258
segmentCount += sentence.Segments.
Count
;
263
for (int i = 0; continueIteration && (i < sentence.Segments.
Count
); i++ )
831
for (int i = 0; result && (i < SubSegments.
Count
); i++)
966
Invariant.Assert(_segments.
Count
== sentenceSegmentCount);
996
if (Segments.
Count
> 0)
998
ITextRange textRange = Segments[Segments.
Count
- 1].TextRange;
src\Framework\System\Windows\Documents\Speller.cs (3)
972
if (textSegment.SubSegments.
Count
== 0)
975
if(textSegment.Suggestions.
Count
> 0)
1028
if (textSegment.SubSegments.
Count
== 0)
src\Framework\System\Windows\Documents\WinRTSpellerInterop.cs (5)
445
segmentCount += sentence.Segments.
Count
;
449
for (int i = 0; continueIteration && (i < sentence.Segments.
Count
); i++)
1095
for (int i = 0; result && (i < SubSegments.
Count
); i++)
1163
if (Segments.
Count
> 0)
1165
ITextRange textRange = Segments[Segments.
Count
- 1].TextRange;