Ejemplo n.º 1
0
 /// <summary>
 ///     Converts count of bytes from a byte array into a string by this
 ///     DICOM transfer syntax instance's character repertoire.
 /// </summary>
 public string ToString(byte[] bytes, int count)
 {
     return(ByteConvert.ToString(bytes, count, CharacterRepertoire));
 }
Ejemplo n.º 2
0
 /// <summary>
 ///     Converts count of bytes from a byte array starting at
 ///     specified offset into a string by this DICOM transfer syntax
 ///     instance's character repertoire.
 /// </summary>
 public virtual string ToString(byte[] bytes, int offset, int count)
 {
     return(ByteConvert.ToString(bytes, offset, count,
                                 CharacterRepertoire));
 }
Ejemplo n.º 3
0
 /// <summary>
 ///     Converts an array of bytes into a string by this
 ///     DICOM transfer syntax instance's character repertoire.
 /// </summary>
 public string ToString(byte[] bytes)
 {
     return(ByteConvert.ToString(bytes, CharacterRepertoire));
 }