C# Class BintreesMonoDroid.Stopwatch

Provides a stopwatch to measure elapsed time.
Afficher le fichier Open project: zanew/MonovsDalvik

Méthodes publiques

Méthode Description
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

Method Details

Stopwatch() public méthode

public Stopwatch ( ) : System
Résultat System

read() public méthode

return the elapsed time (in seconds)
public read ( ) : double
Résultat double

reset() public méthode

public reset ( ) : void
Résultat void

resume() public méthode

Resume timing, after stopping. (Does not wipe out accumulated times.)
public resume ( ) : void
Résultat void

seconds() public static méthode

R eturn system time (in seconds)
public static seconds ( ) : double
Résultat double

start() public méthode

Start (and reset) timer
public start ( ) : void
Résultat void

stop() public méthode

Stop timer
public stop ( ) : double
Résultat double