Click or drag to resize

LittleEndian Class

Encodes and decodes simple data types in the little endian format.
Inheritance Hierarchy
SystemObject
  Demo3D.IOLittleEndian

Namespace:  Demo3D.IO
Assembly:  Demo3D.IO (in Demo3D.IO.dll) Version: 15.0.2.11458
Syntax
C#
public static class LittleEndian

The LittleEndian type exposes the following members.

Methods
  NameDescription
Public methodStatic memberReadBit
Decodes a single bit from the data buffer.
Public methodStatic memberReadInt16
Decodes a 16bit signed integer from the data buffer.
Public methodStatic memberReadInt32
Decodes a 32bit signed integer from the data buffer.
Public methodStatic memberReadInt64
Decodes a 64bit signed integer from the data buffer.
Public methodStatic memberReadUInt16
Decodes a 16bit unsigned integer from the data buffer.
Public methodStatic memberReadUInt32
Decodes a 32bit unsigned integer from the data buffer.
Public methodStatic memberReadUInt64
Decodes a 64bit unsigned integer from the data buffer.
Public methodStatic memberWriteBit
Encodes a single bit into the data buffer.
Public methodStatic memberWriteInt16
Encodes a 16bit signed integer into the data buffer.
Public methodStatic memberWriteInt32
Encodes a 32bit signed integer into the data buffer.
Public methodStatic memberWriteInt64
Encodes a 64bit signed integer into the data buffer.
Public methodStatic memberWriteUInt16
Encodes a 16bit unsigned integer into the data buffer.
Public methodStatic memberWriteUInt32
Encodes a 32bit unsigned integer into the data buffer.
Public methodStatic memberWriteUInt64
Encodes a 64bit unsigned integer into the data buffer.
Top
See Also