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