I created a windows form solution and in the constructor of a class I called
Console.WriteLine(\"constructer called\")
But I only got the form
You should also consider using Debug.WriteLine, that's probably what you're looking for. These statements are written out the trace listeners for your application, and can be viewed in the Output Window of Visual Studio.
Debug.WriteLine("constructor fired");