SafeBuffer.ReadSpan<T>(UInt64, Span<T>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.