Which of the following statements is correct about constructors in C#.NET?

a) A constructor cannot be declared as private
b) A constructor cannot be overloaded
c) A constructor can be a static constructor
d) None of the mentioned

1 thought on “Which of the following statements is correct about constructors in C#.NET?”

  1. c
    Explanation: Static constructor is a constructor which can be called before any object of class is created or any static method is invoked. A static constructor is implicitly called by .net CLR.

Leave a Comment