Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

18 lines
511 B
C#

// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
using System;
namespace System.Reactive.Concurrency
{
/// <summary>
/// Abstraction for a stopwatch to compute time relative to a starting point.
/// </summary>
public interface IStopwatch
{
/// <summary>
/// Gets the time elapsed since the stopwatch object was obtained.
/// </summary>
TimeSpan Elapsed { get; }
}
}