示例#1
0
 /// <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);
 }
示例#2
0
 public Value(ValueRepresentation vr, ValueLength length,
              object value) : this(vr, length)
 {
     Add(value);
 }
示例#3
0
 public Value(ValueRepresentation vr, ValueLength length,
              Array multiValue) : this(vr, length)
 {
     Add(multiValue);
 }
示例#4
0
 public Value(ValueRepresentation vr, ValueLength length)
 {
     this.vr     = vr;
     valueLength = length;
 }