I am not quite able to determine what the purpose of the following code is:
private ISite _Site;
[Browsable(false)]
public System.ComponentModel.ISite Site
{
get
{
return this._Site;
}
set
{
this._Site = value;
}
}
Since the _Site variable is private, and nothing in the class does anything with it, couldn't we do something like this:
[Browsable(false)]
public System.ComponentModel.ISite Site { get; set; }
My next question is, what outside of the class uses this property? I may find it as I am working on this...I'll post here as soon as I do.
Thanks,
Bill