RtfDomParser.RTFWriter.WriteByte C# (CSharp) Method

WriteByte() public method

write a byte data
public WriteByte ( byte b ) : void
b byte byte data
return void
        public void WriteByte( byte b )
        {
            int h = ( b & 0xf0 ) >> 4 ;
            int l = b & 0xf ;
            myWriter.Write( Hexs[ h ] );
            myWriter.Write( Hexs[ l ] );
            intPosition += 2 ;
            //FixIndent();
        }