Start()

Thread::Start() method

Starts thread using null argument object.

void System::Threading::Thread::Start()

Thread::Start(const System::SharedPtr<System::Object>&) method

Starts thread.

void System::Threading::Thread::Start(const System::SharedPtr<System::Object> &o)

Arguments

ParameterTypeDescription
oconst System::SharedPtr<System::Object>&Object to pass to thread function as argument.

See Also