What is the object life cycle for an object in .NET?
From what I understand it is:
A point about the constructor:
Every class has one, as one will be generated by the compiler if you don't code it yourself. And the first thing this does (unless specified otherwise), is to call the ctor of it's parent type.