Ejemplo n.º 1
0
 public static void WriteLine(StringBuffer sb)
 {
     WriteTimeStamp();
     Write(sb);
     Write('\n');
 }
Ejemplo n.º 2
0
        /// <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);
        }
Ejemplo n.º 3
0
        public static void WriteHex(uint value)
        {
            var buf = new StringBuffer(value, "X");

            buf.WriteTo(Dev);
        }