Table of Contents

Class EndianOptions

Namespace
Cuemon
Assembly
Cuemon.Core.dll

Configuration options for System.BitConverter.

public class EndianOptions : IParameterObject
Inheritance
Object
EndianOptions
Implements
Derived

Constructors

EndianOptions()

Initializes a new instance of the EndianOptions class.

public EndianOptions()

Remarks

The following table shows the initial property values for an instance of EndianOptions.

PropertyInitial Value
ByteOrder
BitConverter.IsLittleEndian ? Endianness.LittleEndian : Endianness.BigEndian;

Properties

ByteOrder

Gets or sets the endian byte order enumeration.

public Endianness ByteOrder { get; set; }

Property Value

Endianness

The byte order enumeration.

See Also