execution and flow ?
-
i want to show a string in vs.net debug output window. i think i can use Trace or Debug class. but i dont now how to use them to display a string in managed code ? if there exist some other way plz tell? i want to see the execution and flow of my program can any bode tell? plz write the complete syntex i will be very thank full to u. r00d0034@yahoo.com
-
i want to show a string in vs.net debug output window. i think i can use Trace or Debug class. but i dont now how to use them to display a string in managed code ? if there exist some other way plz tell? i want to see the execution and flow of my program can any bode tell? plz write the complete syntex i will be very thank full to u. r00d0034@yahoo.com
in the console window ? or the output window ? something like :
using namespace System::Diagnostics; ... // on the console window. Console::WriteLine(S"XmlNodeType::Element : {0}", reader->Name ); // on the output window. Debug::WriteLine(S"XmlNodeType::Element : {0}", reader->Name );
Max.