GetValue() public method

public GetValue ( ) : int
return int
Exemplo n.º 1
0
 private static void AppendECI(CharacterSetECI eci, BitVector bits)
 {
     bits.AppendBits(Mode.ECI.GetBits(), 4);
     // This is correct for values up to 127, which is all we need now.
     bits.AppendBits(eci.GetValue(), 8);
 }
Exemplo n.º 2
0
 private static void AppendECI(CharacterSetECI eci, BitVector bits) {
     bits.AppendBits(Mode.ECI.GetBits(), 4);
     // This is correct for values up to 127, which is all we need now.
     bits.AppendBits(eci.GetValue(), 8);
 }