Метод | Описание | |
---|---|---|
Start ( ) : void |
Starts the method in a new thread.
|
|
ThreadedMethod ( ParameterizedThreadStart, _pStart ) : System |
Class constructor if you want to start a method with parameters.
|
|
ThreadedMethod ( ThreadStart, _tStart ) : System |
Class constructor if you want to start a method without parameters.
|
public ThreadedMethod ( ParameterizedThreadStart, _pStart ) : System | ||
_pStart | ParameterizedThreadStart, | The name of the method, all parameters are object. See MSDN documentation on ParameterizedThreadStart. |
Результат | System |
public ThreadedMethod ( ThreadStart, _tStart ) : System | ||
_tStart | ThreadStart, | The name of the method that needs to be started in a seperated thread. |
Результат | System |