コード例 #1
0
 /// <summary>Construct an instance.</summary>
 /// <param name="other">The other instance to copy.</param>
 public TextOperationConfig(TextOperationConfig other)
 {
     this.Operation = other.Operation;
     this.Target    = other.Target.ToArray();
     this.Value     = other.Value;
     this.Delimiter = other.Delimiter;
 }
コード例 #2
0
 /// <summary>Construct an instance.</summary>
 /// <param name="other">The other instance to copy.</param>
 public TextOperationConfig(TextOperationConfig other)
     : this(
         operation : other.Operation,
         target : other.Target.ToArray(),
         value : other.Value,
         delimiter : other.Delimiter
         )
 {
 }
コード例 #3
0
 /// <summary>Construct an instance.</summary>
 /// <param name="other">The other instance to copy.</param>
 public TextOperationConfig(TextOperationConfig other)
     : this(
         operation : other.Operation,
         target : other.Target.ToArray(),
         value : other.Value,
         delimiter : other.Delimiter,
         search : other.Search,
         replaceMode : other.ReplaceMode
         )
 {
 }