示例#1
0
        public MRaw(MRaw other)
        {
            if (other == null)
            {
                throw new ArgumentNullException(nameof(other));
            }

            _value = other.Value;
        }
示例#2
0
 public static MRaw Raw(MRaw other)
 {
     return(new MRaw(other));
 }