Esempio n. 1
0
 public TableCombineOperation(
     TomlTable target, TomlTable source, CommentsOp commentsOp)
 {
     this.target     = target.CheckNotNull(nameof(target));
     this.source     = source.CheckNotNull(nameof(source));
     this.commentsOp = commentsOp.CheckNotNull(nameof(commentsOp));
 }
Esempio n. 2
0
 IRowSelector ICommentOperationOrRowSelector.IncludingComments(CommentsOp combiner)
 {
     this.commentsOp = combiner.CheckNotNull(nameof(combiner));
     return(this);
 }