Example #1
0
 /// <summary>
 /// Writes a hex-string to the stream
 /// </summary>
 /// <param name="@string">The hex-string to write</param>
 public void WriteHexString(String pHexString)
 {
     WriteBytes(HexEncoding.GetBytes(pHexString));
 }
Example #2
0
 public void WriteHexString(string hexString)
 {
     this.WriteBytes(HexEncoding.GetBytes(hexString));
 }