예제 #1
0
        public MImage(MImage other)
        {
            if (other == null)
            {
                throw new ArgumentNullException(nameof(other));
            }

            Text  = other.Text;
            _url  = other.Url;
            Title = other.Title;
        }
예제 #2
0
 public static MImage Image(MImage other)
 {
     return(new MImage(other));
 }