Welcome to mirror list, hosted at ThFree Co, Russian Federation.

DummyDisposable.cs « Dummies « Tests.System.Reactive « Rx.NET - github.com/mono/rx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 335bf438bdce79aebcdda80b1f1caf2bf2074065 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

using System;

namespace ReactiveTests.Dummies
{
    class DummyDisposable : IDisposable
    {
        public static readonly DummyDisposable Instance = new DummyDisposable();

        public void Dispose()
        {
            throw new NotImplementedException();
        }
    }
}