Use integers that don't go over 7 bit.
Useful if your transport stream isn't 8 bit safe.
Declaration Syntax
C# |
public static Endianness Only7Bit { get; }
Remarks
Best to be combined with UTF - 7 encoding, so no byte in the output will be > 127
Examples
CopyC#
Sofu.Sofu.Map file = SofuReader.LoadFile("file.sofu"); file.WriteBinary("file.bsofu",Encoding.UTF7,Endianness.Only7Bit);