If I keep initializing X509Store
certificate stores and don't use their Close()
method, what is the implication of this?
In the code example given in documentation, they don't use try..finally
block to make a call to Close
method. If this certificate store is something that needs to be freed, why does not the API of the class designed to derive from IDisposable
or why does not this class have a implicit destructor called when object goes out of scope?