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

            _url = other.Url;
        }
Beispiel #2
0
 public static MAutolink Autolink(MAutolink other)
 {
     return(new MAutolink(other));
 }