internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib) : base(attrib) { var value = attrib.Values as string; if (value != null) _value = value; }
internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib) : base(attrib) { string value = attrib.Values as string; if (value != null) _value = String.Copy(value); }
internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib) : base(attrib) { string value = attrib.Values as string; if (value != null) { _value = String.Copy(value); } }
internal DicomAttributeSingleValueText(DicomAttributeSingleValueText attrib) : base(attrib) { var value = attrib.Values as string; if (value != null) { _value = value; } }