Stopwatch.GetElapsedTime Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
GetElapsedTime(Int64) |
Obtient le temps écoulé depuis la récupération de la |
GetElapsedTime(Int64, Int64) |
Obtient le temps écoulé entre deux horodatages récupérés à l’aide de GetTimestamp(). |
GetElapsedTime(Int64)
- Source:
- Stopwatch.cs
- Source:
- Stopwatch.cs
- Source:
- Stopwatch.cs
Obtient le temps écoulé depuis la récupération de la startingTimestamp
valeur à l’aide de GetTimestamp().
public:
static TimeSpan GetElapsedTime(long startingTimestamp);
public static TimeSpan GetElapsedTime (long startingTimestamp);
static member GetElapsedTime : int64 -> TimeSpan
Public Shared Function GetElapsedTime (startingTimestamp As Long) As TimeSpan
Paramètres
- startingTimestamp
- Int64
Horodatage marquant le début de la période.
Retours
TimeSpan pour le temps écoulé entre l’horodatage de début et l’heure de cet appel.
S’applique à
GetElapsedTime(Int64, Int64)
- Source:
- Stopwatch.cs
- Source:
- Stopwatch.cs
- Source:
- Stopwatch.cs
Obtient le temps écoulé entre deux horodatages récupérés à l’aide de GetTimestamp().
public:
static TimeSpan GetElapsedTime(long startingTimestamp, long endingTimestamp);
public static TimeSpan GetElapsedTime (long startingTimestamp, long endingTimestamp);
static member GetElapsedTime : int64 * int64 -> TimeSpan
Public Shared Function GetElapsedTime (startingTimestamp As Long, endingTimestamp As Long) As TimeSpan
Paramètres
- startingTimestamp
- Int64
Horodatage marquant le début de la période.
- endingTimestamp
- Int64
Horodatage marquant la fin de la période.
Retours
TimeSpan pour le temps écoulé entre les horodatages de début et de fin.