Click or drag to resize

Endian Class

Encodes and decodes simple data types in a particular endian format.
Inheritance Hierarchy
SystemObject
  Demo3D.IOEndian

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

The Endian type exposes the following members.

Constructors
  NameDescription
Protected methodEndian
Initializes a new instance of the Endian class
Top
Methods
  NameDescription
Public methodReadInt16
Decodes a 16bit signed integer from the data buffer.
Public methodReadInt32
Decodes a 32bit signed integer from the data buffer.
Public methodReadInt64
Decodes a 64bit signed integer from the data buffer.
Public methodReadUInt16
Decodes a 16bit unsigned integer from the data buffer.
Public methodReadUInt32
Decodes a 32bit unsigned integer from the data buffer.
Public methodReadUInt64
Decodes a 64bit unsigned integer from the data buffer.
Public methodWriteInt16
Encodes a 16bit signed integer into the data buffer.
Public methodWriteInt32
Encodes a 32bit signed integer into the data buffer.
Public methodWriteInt64
Encodes a 64bit signed integer into the data buffer.
Public methodWriteUInt16
Encodes a 16bit unsigned integer into the data buffer.
Public methodWriteUInt32
Encodes a 32bit unsigned integer into the data buffer.
Public methodWriteUInt64
Encodes a 64bit unsigned integer into the data buffer.
Top
Fields
  NameDescription
Public fieldStatic memberBig
Encodes and decodes simple data types in the big endian format.
Public fieldStatic memberLittle
Encodes and decodes simple data types in the little endian format.
Top
See Also