Can I call a overloaded constructor from another constructor of the same class in C#?
|
1
|
|||||||||||||
|
|
|
No, You can't do that, the only place you can call the constructor from another constructor in C# is immediately after ":" after the constructor. for example
|
|||
|
|
If you mean if you can do ctor chaining in C#, the answer is yes. The question has already been asked. However it seems from the comments, it seems what you really intend to ask is
'Can I call an overloaded constructor from within another constructor with pre/post processing?'
|
||
|
|
|
EDIT: According to the comments on the original post this is a C# question. Short answer: yes, using the Long answer: yes, using the
|
||||||||
|
|
|
In C# it is not possible to call another constructor from inside the method body. You can call a base constructor this way: foo(args):base() as pointed out yourself. You can also call another constructor in the same class: foo(args):this(). When you want to do something before calling a base constructor, it seems the construction of the base is class is dependant of some external things. If so, you should through arguments of the base constructor, not by setting properties of the base class or something like that |
||
|
|
