Stubs.cs 350 B

1234567891011
  1. // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
  2. namespace System.Reactive.Concurrency
  3. {
  4. #if !NO_THREAD
  5. internal static class TimerStubs
  6. {
  7. public static readonly System.Threading.Timer Never = new System.Threading.Timer(_ => { });
  8. }
  9. #endif
  10. }