Hello,
Public properyt only exposes the variable _emailHashTable, which I assume is created in the constructor. You need the underlying hashtable to store the data somewhere; the property only exposes it to the user of the class. So whomever uses the class can access the EmailHashtable property, which returns a reference to the _emailHashtable.
Does that make sense?
Brian
|