C# 클래스 Argentini.Halide.H3StopWatch

Accurate, Simple, and Easy to use Stopwatch Class. This class can be used to track process execution time in seconds and milliseconds.
파일 보기 프로젝트 열기: argentini/Halide

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
GetTime ( ) : string

Returns a string containing the elasped time since the Start of the H3StopWatch.

(If Called after the Stop Method) Returns a string containing the elasped time between the Start of the H3StopWatch and the Stop of the H3StopWatch

H3StopWatch ( ) : System

Initializes the H3StopWatch to 0.

Reset ( ) : void

Reset the Stopwatch to 0.

Start ( ) : void

Starts the Stopwatch.

Stop ( ) : void

Stops the Stopwatch.

메소드 상세

GetTime() 공개 메소드

Returns a string containing the elasped time since the Start of the H3StopWatch.

(If Called after the Stop Method) Returns a string containing the elasped time between the Start of the H3StopWatch and the Stop of the H3StopWatch

public GetTime ( ) : string
리턴 string

H3StopWatch() 공개 메소드

Initializes the H3StopWatch to 0.
public H3StopWatch ( ) : System
리턴 System

Reset() 공개 메소드

Reset the Stopwatch to 0.
public Reset ( ) : void
리턴 void

Start() 공개 메소드

Starts the Stopwatch.
public Start ( ) : void
리턴 void

Stop() 공개 메소드

Stops the Stopwatch.
public Stop ( ) : void
리턴 void