class Constructor
{
Constructor()
{
}
static void Main()
{
Constructor obj = new Constructor();
}
}
class Compiler
{
Compiler obj1 = new Compiler();
}
In the first program I created a constructor with no members and in the second program I'm not created any constructor so the compiler creates a default constructor so what's the difference between them in c#