Stopwatch.GetElapsedTime 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetElapsedTime(Int64) |
取得經過的時間, |
GetElapsedTime(Int64, Int64) |
取得使用 GetTimestamp()擷取兩個時間戳之間的經過時間。 |
GetElapsedTime(Int64)
- 來源:
- Stopwatch.cs
- 來源:
- Stopwatch.cs
- 來源:
- Stopwatch.cs
取得經過的時間, startingTimestamp
因為使用 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
參數
- startingTimestamp
- Int64
時間戳,標示時間週期的開頭。
傳回
, TimeSpan 表示開始時間戳與這個呼叫時間之間的經過時間。
適用於
GetElapsedTime(Int64, Int64)
- 來源:
- Stopwatch.cs
- 來源:
- Stopwatch.cs
- 來源:
- Stopwatch.cs
取得使用 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
參數
- startingTimestamp
- Int64
時間戳,標示時間週期的開頭。
- endingTimestamp
- Int64
標記時間週期結束的時間戳。
傳回
, TimeSpan 表示開始時間戳和結束時間戳之間的經過時間。