Is there any possibility in inheritance in c# so that we can have subclass constructor call only without calling base class constructor as a default base class constructor calls firstly
相关问题
- how to define constructor for Python's new Nam
- Sorting 3 numbers without branching [closed]
- Graphics.DrawImage() - Throws out of memory except
- Why am I getting UnauthorizedAccessException on th
- Keeping track of variable instances
A subclass constructor will always call a superclass constructor: either the default superclass constructor or a (maybe parametrized) superclass constructor, which can be chosen by you, when you declare your subclass constructor.