예제 #1
0
        internal DicomAttributeMultiValueText(DicomAttributeMultiValueText attrib)
            : base(attrib)
        {
            string[] values = (string[])attrib.Values;

            _values = new string[values.Length];

            for (int i = 0; i < values.Length; i++)
                _values[i] = string.Copy(values[i]);
        }
 internal DicomAttributeMultiValueText(DicomAttributeMultiValueText attrib)
     : base(attrib)
 {
     var values = (string[])attrib.Values;
     _values = new string[values.Length];
     for (int i = 0; i < values.Length; ++i)
         _values[i] = values[i];
 }