mirror of
https://github.com/evopro-ag/Sharp7Reactive.git
synced 2025-12-16 11:42:52 +00:00
14 lines
329 B
C#
14 lines
329 B
C#
using System;
|
|
using System.Reactive.Disposables;
|
|
|
|
namespace Sharp7.Rx.Extensions
|
|
{
|
|
internal static class DisposableExtensions
|
|
{
|
|
public static void AddDisposableTo(this IDisposable disposable, CompositeDisposable compositeDisposable)
|
|
{
|
|
compositeDisposable.Add(disposable);
|
|
}
|
|
}
|
|
}
|