Sofu Documentation
Is7BIT Method
NamespacesSofu.SofuEndiannessIs7BIT()()()
Detects 7 Bit Endianness
Declaration Syntax
C#
public bool Is7BIT()
Return Value
True if the Endianness is 7Bit only, false otherwise
Examples
CopyC#
Endianness endian = new Endianness(1);
Console.Out.WriteLine(endian.Is7BIT()); // false
endian = new Endianness(0);
Console.Out.WriteLine(endian.Is7BIT()); // true

Assembly: Sofu (Module: Sofu) Version: 0.2.1.0 (0.2.1.0)