/// <summary>
 /// Defines the length of the Character Count Indicator,
 /// which varies according to themode and the symbol version in use
 /// </summary>
 /// <param name="version">The version.</param>
 /// <returns>Number of bits in Character Count Indicator.</returns>
 /// <remarks></remarks>
 protected override int GetBitCountInCharCountIndicator(int version)
 {
     return(CharCountIndicatorTable.GetBitCountInCharCountIndicator(Mode.Alphanumeric, version));
 }
Example #2
0
 /// <summary>
 /// Defines the length of the Character Count Indicator,
 /// which varies according to themode and the symbol version in use
 /// </summary>
 /// <param name="version">The version.</param>
 /// <returns>Number of bits in Character Count Indicator.</returns>
 /// <remarks></remarks>
 protected override int GetBitCountInCharCountIndicator(int version)
 {
     return(CharCountIndicatorTable.GetBitCountInCharCountIndicator(Mode.Kanji, version));
 }