windows form .. console.writeline() where is console?
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");
In project settings set application type as Console. Then you will get console window and Windows form.