Method FromRaw
FromRaw(void*)
Creates a NullablePersistentSequencePointerUninitialized from a raw pointer.
Declaration
public static NullablePersistentSequencePointerUninitialized FromRaw(void* raw)
Parameters
| Type | Name | Description |
|---|---|---|
| void* | raw | The raw pointer specifying the contiguous target sequence that the resulting NullablePersistentSequencePointerUninitialized will point to. |
Returns
| Type | Description |
|---|---|
| NullablePersistentSequencePointerUninitialized | A NullablePersistentSequencePointerUninitialized that points to the same contiguous target sequence as the specified |
Implements
Remarks
The raw pointer may be null. If it is, the resulting NullablePersistentSequencePointerUninitialized will represent a null pointer.
The resulting NullablePersistentSequencePointerUninitialized will point to the same contiguous target sequence as raw.
FromRaw<T>(T*)
Creates a NullablePersistentSequencePointerUninitialized<T> from a raw pointer.
Declaration
public static NullablePersistentSequencePointerUninitialized<T> FromRaw<T>(T* raw) where T : unmanaged
Parameters
| Type | Name | Description |
|---|---|---|
| T* | raw | The raw pointer specifying the contiguous target sequence that the resulting NullablePersistentSequencePointerUninitialized<T> will point to. |
Returns
| Type | Description |
|---|---|
| NullablePersistentSequencePointerUninitialized<T> | A NullablePersistentSequencePointerUninitialized<T> that points to the same contiguous target sequence as the specified |
Type Parameters
| Name | Description |
|---|---|
| T | The type of the target that the resulting NullablePersistentSequencePointerUninitialized<T> will point to. |
Remarks
The raw pointer may be null. If it is, the resulting NullablePersistentSequencePointerUninitialized<T> will represent a null pointer.
The resulting NullablePersistentSequencePointerUninitialized<T> will point to the same contiguous target sequence as raw.