public static void WriteLine(StringBuffer sb) { WriteTimeStamp(); Write(sb); Write('\n'); }
/// <summary> /// Appends a number to the string. Use format to output as Hex. /// </summary> public void Append(uint value, string format) { var sb = new StringBuffer(format); Append(value, sb); }
public static void WriteHex(uint value) { var buf = new StringBuffer(value, "X"); buf.WriteTo(Dev); }