My class have 2 C'tors:
MyClass(int x)
{actionA();
actionB(x);}
and
MyClass (int x,boolean b)
{ actionA();
actionB(x);
actionC(b);}
I want to call from the second C'tor to the first one:like
MyClass (int x,boolean b)
{ MyClass(x);
actionC(b);}
But compiler doesn't agree to get it. How should I write it Thank you.
.NET Development20
|