Example #1
0
 /// <summary>
 /// Merge this code block with another one.
 /// </summary>
 /// <param name="other">The other code block.</param>
 public void Merge(CodeBlock other)
 {
     Children.AddRange(other.Children);
 }