06-21-04 04:09 AM
Hello Neal,
[vbcol=seagreen]
>In the SDK\Orchestrations\MethodCall we find an expression shape that conta
ins the following statement:
>
>System.Diagnostics.Debug.WriteLine(iResult);
>
>My question is where does the debug go? How do I find and read what got written.[/
vbcol]
This statement writes a debug output to the "output" window of a debugger, i
f available.
If no debugger is avaialble at the time the statement is executed, the strin
g is simply ignored.
To see those strings, attach VS.NET 2003 to BTSNTSVC.EXE and choose ".NET".
Do something that triggers the execution of the statement above (perhaps sen
ding a message)
and in Visual Studio, switch to the output debug window. You will see the st
rings.
Note that this is not specific to an orchestration. If you write a simple "H
ello World" .NET
application with this statement, you will see the asme behavior.
Thanks.
-Gilles.
[ Post a follow-up to this message ]
|