Table of Contents

Enum MultiDimensionalArrayFormat

Namespace
Nerdbank.MessagePack
Assembly
Nerdbank.MessagePack.dll

Enumerates the possible formats for serializing multi-dimensional arrays.

public enum MultiDimensionalArrayFormat

Fields

Flat = 1

A high performance format that serializes all dimensions in a single array.

Nested = 0

A format that nests arrays for each dimension.

Remarks

The msgpack spec doesn't define how to encode multi-dimensional arrays, so we offer a couple options.