Can I have class without constructor?

Answer: Yes, C# class without constructor is possible . In fact, we can have a class without any constructor in C#. If we don’t declare any constructors in a class, the compiler automatically provides a public parameter less constructor. And it is ok to instantiate the class without constructor.

Read more