MemoryMarshal

MemoryMarshal class

Provides memory marshalling implementation. For compatibility with translated code only, as no managed code is supported on C++ side. This is a static type with no instance services. You should never create instances of it by any means.

class MemoryMarshal

Methods

MethodDescription
static Span<uint8_t> AsBytes(const Span<T>&)Casts a Span of one primitive type T to Span of bytes.
static Span<TTo> Cast(const Span<TFrom>&)Casts a Span of one primitive type TFrom to another primitive type TTo.

See Also