BTDBTest.ODBIteratorTest.ToStringFastVisitor.Print C# (CSharp) Method

Print() public method

public Print ( ByteBuffer b ) : void
b ByteBuffer
return void
            void Print(ByteBuffer b)
            {
                for (int i = 0; i < b.Length; i++)
                {
                    if (i > 0) Builder.Append(' ');
                    Builder.Append(b[i].ToString("X2"));
                }
            }
ODBIteratorTest.ToStringFastVisitor