/// <summary> /// Re-creates this DICOM value length instance from specified DICOM /// output stream using specified DICOM VR and value length. /// </summary> public Value(Stream stream, ValueRepresentation vr, ValueLength length) : this(vr, length) { LoadFrom(stream); }
public Value(ValueRepresentation vr, ValueLength length, object value) : this(vr, length) { Add(value); }
public Value(ValueRepresentation vr, ValueLength length, Array multiValue) : this(vr, length) { Add(multiValue); }
public Value(ValueRepresentation vr, ValueLength length) { this.vr = vr; valueLength = length; }