Modifier

SafeBuffer.ReadSpan<T>(UInt64, Span<T>) Method

Definition

Important

This API is not CLS-compliant.

Reads value types from memory starting at the offset, and writes them into a span. The number of value types that will be read is determined by the length of the span.

public:
generic <typename T>
 where T : value class void ReadSpan(System::UInt64 byteOffset, Span<T> buffer);
[System.CLSCompliant(false)]
public void ReadSpan<T> (ulong byteOffset, Span<T> buffer) where T : struct;
[<System.CLSCompliant(false)>]
member this.ReadSpan : uint64 * Span<'T (requires 'T : struct)> -> unit (requires 'T : struct)
Public Sub ReadSpan(Of T As Structure) (byteOffset As ULong, buffer As Span(Of T))

Type Parameters

T

The value type to read.

Parameters

byteOffset
UInt64

The location from which to start reading.

buffer
Span<T>

The output span to write to.

Attributes

Applies to