natix.CompactDS.BinaryCoding.Decode C# (CSharp) Méthode

Decode() public méthode

public Decode ( BitStream32 Buffer, BitStreamCtx ctx ) : int
Buffer BitStream32
ctx BitStreamCtx
Résultat int
        public int Decode(BitStream32 Buffer, BitStreamCtx ctx)
        {
            int number = (int)Buffer.Read (this.NumBits, ctx);
            return number;
        }