no output for debug.writeline

  • Thread starter Thread starter Daimy
  • Start date Start date
D

Daimy

I wrote the codes below

public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();

//
// TODO: Add any constructor code after InitializeComponent call
//
Thread.Sleep(10*1000);

Debug.WriteLine("Init");
}

When I debug the project in POCKET PC, no output is written to output
window.
But if I debug the Form1.exe in PC. (Use Tools->Debug Process and then
select the Form1.exe), I can see "Init" in the output window.

Can you help me to solve this problem?

Thanks!
 
Back
Top