Enum LayoutArrayKind
- Namespace
- CStructSharp.Introspection
- Assembly
- CStructSharp.dll
How a field's elements are counted, as reported by ArrayKind.
public enum LayoutArrayKind
Fields
Fixed = 1A compile-time fixed count (every dimension in Dimensions is known).
Runtime = 2A count evaluated from an expression per operation.
Scalar = 0One value.
String = 3A terminated character string (
char name[]).Terminated = 5Elements until an all-zero element (
T values[]on a non-character type).ToEnd = 4Every whole element to the end of the input (
T values[EOF]).