|
public Disposable(Action action) |
At the moment the workaround is used:
public class DisposableWithMultipleCallsAllowed : Disposable
{
public DisposableWithMultipleCallsAllowed(Disposal disposal) : base(disposal) { }
protected override bool AllowMultipleDisposeCalls => true;
}