コード例 #1
0
ファイル: DisposableExtensions.cs プロジェクト: zsd4yr/nuke
 public static IDisposable CombineWith(this IDisposable disposable, IDisposable otherDisposable)
 {
     return(disposable.CombineWith(cleanup: otherDisposable.Dispose));
 }