Tagged Questions
0
votes
1answer
516 views
Converting special characters into 7 bit data for a PDU string in C#
I'm trying to create a PDU encoder which requires me to:
Convert each char in a string into an ASCII value
Convert the ASCII value into 7-bit binary
Using this method - Converting 7-bit into 8 bit.
...
0
votes
2answers
128 views
Need help using Read7BitEncodedInt
I've been searching for 2 hours or better for a way to use the Read7BitEncodedInt method for this. I need to use it somehow to reduce my file size (in this case likely by 100mb or more). I was also ...
0
votes
5answers
2k views
Encoding an integer in 7-bit format of C# BinaryReader.ReadString
C#'s BinaryReader has a function that according to MSDN, reads an integer encoded as "seven bit integer", and then reads a string with the length of this integer.
Is there a clear documentation for ...