コード例 #1
0
 public void UnitOfWorkWithAbstractRefDependency(
     out SomeAbstractDependency param,
     SomeAbstractDependency other)
 {
     _ = other ?? throw new ArgumentNullException();
     throw new NotImplementedException();
 }
コード例 #2
0
 public void UnitOfWorkWithAbstractRefDependency(ref SomeAbstractDependency param)
 {
     Guard.AgainstNull(param, nameof(param));
     throw new NotImplementedException();
 }