public MIndentedCodeBlock(MIndentedCodeBlock other)
        {
            if (other == null)
            {
                throw new ArgumentNullException(nameof(other));
            }

            Text = other.Text;
        }
Ejemplo n.º 2
0
 public static MIndentedCodeBlock IndentedCodeBlock(MIndentedCodeBlock other)
 {
     return(new MIndentedCodeBlock(other));
 }