예제 #1
0
 public static IDisposable CombineWith(this IDisposable disposable, IDisposable otherDisposable)
 {
     return(disposable.CombineWith(cleanup: otherDisposable.Dispose));
 }