3 writes to _buckets
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (3)
499
_buckets
= buckets;
1238
_buckets
= null;
1274
_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)
515
if (
_buckets
== null)
519
Debug.Assert(
_buckets
!= null);
806
if (dictionary.
_buckets
!= null)
876
if (dictionary.
_buckets
!= null)
966
if (dictionary.
_buckets
== null)
970
Debug.Assert(dictionary.
_buckets
!= null);
1080
if (dictionary.
_buckets
== null)
1084
Debug.Assert(dictionary.
_buckets
!= null);
1302
if (
_buckets
!= null)
1375
if (
_buckets
!= null)
1551
if (
_buckets
== null)
1744
int[] buckets =
_buckets
!;