Method InitializeTarget
InitializeTarget(in T)
Initializes the target value the current pointer is pointing to with the specified value.
Declaration
public Pointer<T> InitializeTarget(in T value)
Parameters
| Type | Name | Description |
|---|---|---|
| T | value | The value to initialize at the target location. |
Returns
| Type | Description |
|---|---|
| Pointer<T> | A new Pointer<T> pointing to the same target as the current pointer, representing the initialized target. |