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

            Text  = other.Text;
            _info = other.Info;
        }
Example #2
0
 public static MFencedCodeBlock FencedCodeBlock(MFencedCodeBlock other)
 {
     return(new MFencedCodeBlock(other));
 }