H
Howard Weiss
I would like to know what thread my form is running on in a Managed C++
Windows Form Application
I tried
using namespace System:iagnostics;
using namespace System::Threading;
and including the code
Debug::WriteLine(Thread::CurrentThread->Name->ToString());
in my form constructor
This compiles but results in a Null Reference exception
Howard Weiss
Windows Form Application
I tried
using namespace System:iagnostics;
using namespace System::Threading;
and including the code
Debug::WriteLine(Thread::CurrentThread->Name->ToString());
in my form constructor
This compiles but results in a Null Reference exception
Howard Weiss