Has anyone worked with .Net code to read/manage VLQs? There is a Java method readMultiByteInteger that accepts a stream of bytes and coverts them to ints according to VLQ spec but i cannot find a C# equivalent.
From Wikipedia: A variable-length quantity (VLQ) is a universal code that uses an arbitrary number of binary octets (eight-bit bytes) to represent an infinitely large integer.
Anyone have an idea? (Besides switching to Java?)
Thanks, Paul