Voici un petit exemple d'utilisation de la classe StopWatch pour le deboggage de vos applications.
Here is a small example for using the StopWatch class for debugging your app.
// Déclarer un objet StopWatch :
// Declare a StopWatch object :
private Stopwatch stopWatch;
// Démarrer le timer
// Start the timer
stopWatch.Start();
// Vérifier si le timer est activé
// Check if the timer is activated
if (stopWatch.IsRunning) {}
// Arrêter le timer
// Stop the timer
stopWatch.Stop();
// Réinitialiser le timer
// Reset the timer
stopWatch.Reset();
// Récupérer le temps écoulé en tant que valeur de type TimeSpan
// Get the elapsed time as a TimeSpan value
TimeSpan ts = stopWatch.Elapsed;
Subscribe to:
Post Comments (Atom)
2 comments:
Salut Fabien,
La classe StopWatch ne semble pas faire partie du Compact Framework. Ou alors j'ai loupé quelque chose ?
Merci.
Salut Stéphane,
Oui désolé, la classe StopWatch est uniquement disponible sur le CF 3.5 j'avais oublié de le préciser, désolé...
Stopwatch is only available on CF3.5.
à+
Fabien
Post a Comment