3 writes to loadsize
mscorlib (3)
system\collections\hashtable.cs (3)
290
loadsize
= (int)(this.loadFactor * hashsize);
764
loadsize
= (int)(loadFactor * newsize);
1265
loadsize
= (int)(loadFactor*hashsize);
4 references to loadsize
mscorlib (4)
system\collections\hashtable.cs (4)
293
Contract.Assert(
loadsize
< hashsize, "Invalid hashtable loadsize!");
771
Contract.Assert(
loadsize
< newsize, "Our current implementaion means this is not possible.");
881
if (count >=
loadsize
) {
884
else if(occupancy >
loadsize
&& count > 100) {