7
Answers

Code explanation

S

S

12y
1k
1
Hi

Ive been looking inside the .NET Framework and have noticed a general pattern appearing.

Given the code below:-

public void Insert(object key, object value, bool add)

if(this.count >= this.loadsize)

My question is, the very first condition that is checked is by the if statement. But how are the fields count and loadsize initialized with values? is it when the actual instantiation of the method occurs?

Regards

Steven
Answers (7)
Next Recommended Forum