ReadOnlyMemory2D<T>.DangerousCreate Method

Definition

Creates a new ReadOnlyMemory2D<T> instance from an arbitrary object.

public static Microsoft.Toolkit.HighPerformance.ReadOnlyMemory2D<T> DangerousCreate (object instance, ref T value, int height, int width, int pitch);
static member DangerousCreate : obj * 'T * int * int * int -> Microsoft.Toolkit.HighPerformance.ReadOnlyMemory2D<'T>
Public Shared Function DangerousCreate (instance As Object, ByRef value As T, height As Integer, width As Integer, pitch As Integer) As ReadOnlyMemory2D(Of T)

Parameters

instance
Object

The Object instance holding the data to map.

value
T

The target reference to point to (it must be within instance).

height
Int32

The height of the 2D memory area to map.

width
Int32

The width of the 2D memory area to map.

pitch
Int32

The pitch of the 2D memory area to map.

Returns

A ReadOnlyMemory2D<T> instance with the specified parameters.

Exceptions

Thrown when one of the input parameters is out of range.

Remarks

The value parameter is not validated, and it's responsibility of the caller to ensure it's valid.

Applies to