When referenced in the constructor, does the keyword this refer to the instance of the class being created?
For instance, I have a list of all instances of a certain class. If I put
MyList.Add(this);
at the end of the constructor, will that add the newly created class?
Yes
thisrefers to the current instance in the constructor just like in every other instance method.