3 writes to _buckets
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (3)
500
_buckets
= buckets;
1239
_buckets
= null;
1275
_buckets
= new int[newSize];
18 references to _buckets
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (18)
285
Debug.Assert(
_buckets
!= null, "_buckets should be non-null");
288
Array.Clear(
_buckets
);
387
info.AddValue(HashSizeName,
_buckets
== null ? 0 :
_buckets
.Length); // This is the length of the bucket array
389
if (
_buckets
!= null)
405
if (
_buckets
!= null)
516
if (
_buckets
== null)
520
Debug.Assert(
_buckets
!= null);
807
if (dictionary.
_buckets
!= null)
877
if (dictionary.
_buckets
!= null)
967
if (dictionary.
_buckets
== null)
971
Debug.Assert(dictionary.
_buckets
!= null);
1081
if (dictionary.
_buckets
== null)
1085
Debug.Assert(dictionary.
_buckets
!= null);
1303
if (
_buckets
!= null)
1376
if (
_buckets
!= null)
1552
if (
_buckets
== null)
1745
int[] buckets =
_buckets
!;