IStopwatchProvider
Provider for  IStopwatch objects.
            
                using System.Runtime.CompilerServices;
namespace System.Reactive.Concurrency
{
    [System.Runtime.CompilerServices.NullableContext(1)]
    public interface IStopwatchProvider
    {
        IStopwatch StartStopwatch();
    }
}