Is Possible for Private Constructors in C#?
-
Yes
-
No
-
Can't Say
-
I don't know
A
Correct answer
Explanation
C# absolutely supports private constructors. They're commonly used in design patterns like Singleton to prevent direct instantiation from outside the class, or for static utility classes that should never be instantiated. The private constructor can only be called from within the class itself, typically through a static method or property that controls instance creation.