I know that there is no way to do this in pure C++, but I was wondering if it is possible to call a constructor from another constructor\'s initialization list in C++/CLI, s
You can do following
ref class A { public: A(int p) : p(p) { this->A::A(); } A() : p(1) {} int p; };
It is not valid C++ code , but VC compiles it fine :)