Пример #1
0
 /// <summary>
 /// Gets a hex representation of this buffer.
 /// </summary>
 /// <returns>A string representing this buffer's contents in hexadecimal notation.</returns>
 public override string ToString()
 {
     return(DataFormatter.Format(m_data, 0, Length));
 }
Пример #2
0
 /// <summary>
 /// Gets a hex representation of this buffer.
 /// </summary>
 /// <returns>A string representing this buffer's contents in hexadecimal notation.</returns>
 public override string ToString()
 {
     return(DataFormatter.Format(GetData(), 0, Count));
 }