Yes, it automatically calls the default constructor of the base class. The default constructor has no parameters.
If there is no default constructor, you must manually call the base class constructor using the syntax:
public MyClass() : base(parameters, ...)
Source: Using Constructors (C #)
source
share