C# 클래스 ThreadedMethod, whatsapp-desktop-client

Makes starting a method in a seperated thread just a little bit easier.
파일 보기 프로젝트 열기: sambulosenda/whatsapp-desktop-client 1 사용 예제들

공개 메소드들

메소드 설명
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.

메소드 상세

Start() 공개 메소드

Starts the method in a new thread.
public Start ( ) : void
리턴 void

ThreadedMethod() 공개 메소드

Class constructor if you want to start a method with parameters.
public ThreadedMethod ( ParameterizedThreadStart, _pStart ) : System
_pStart ParameterizedThreadStart, The name of the method, all parameters are object. See MSDN documentation on ParameterizedThreadStart.
리턴 System

ThreadedMethod() 공개 메소드

Class constructor if you want to start a method without parameters.
public ThreadedMethod ( ThreadStart, _tStart ) : System
_tStart ThreadStart, The name of the method that needs to be started in a seperated thread.
리턴 System