Empty constructor or no constructor
- by Ram
Hi,
I think it is not mandatory to have a default constructor in a class (C#).
So in that situation shall I have a empty constructor in the class or I can skip it?
Is it a best practice to have a default empty constructor?
Class test
{
test()
{
}
......
}
or
Class test
{
......
}