Possible Duplicate:
Virtual member call in a constructor
In C#, is it safe to call virtual method from constructor? What does the language specification say? Please quote from the spec as well. By safe, I mean would it call the implementation of the derived class?
This doubt exists in my mind, because in C++, it is not safe to call virtual function from constructor.