On 09.09.2010 13:17, Andrew K. wrote: > > Of course you're right. I just tried some options to get an output by mono at > all because a standard call to mono (mono [myexename].exe) doesnt output > anything even if i pipe it to a .txt file (mono [myexename].exe> > mono.log). I should mention that the --debug option doesn't out anything as
If myexename.exe is compiled with /target:winexe, Console.WriteLine does not output anything under Windows, because the app does not have a console. "mono --debug" should override this, though. Robert _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
