C# 클래스 BintreesMonoDroid.Stopwatch

Provides a stopwatch to measure elapsed time.
파일 보기 프로젝트 열기: zanew/MonovsDalvik

공개 메소드들

메소드 설명
Stopwatch ( ) : System
read ( ) : double

return the elapsed time (in seconds)

reset ( ) : void
resume ( ) : void

Resume timing, after stopping. (Does not wipe out accumulated times.)

seconds ( ) : double

R eturn system time (in seconds)

start ( ) : void

Start (and reset) timer

stop ( ) : double

Stop timer

메소드 상세

Stopwatch() 공개 메소드

public Stopwatch ( ) : System
리턴 System

read() 공개 메소드

return the elapsed time (in seconds)
public read ( ) : double
리턴 double

reset() 공개 메소드

public reset ( ) : void
리턴 void

resume() 공개 메소드

Resume timing, after stopping. (Does not wipe out accumulated times.)
public resume ( ) : void
리턴 void

seconds() 공개 정적인 메소드

R eturn system time (in seconds)
public static seconds ( ) : double
리턴 double

start() 공개 메소드

Start (and reset) timer
public start ( ) : void
리턴 void

stop() 공개 메소드

Stop timer
public stop ( ) : double
리턴 double