SemPtr SemPtr
SemPtr SemPtr
Documentation generated with DocFX
Using SingulinkFX as the template

Search Results for

    Method FromRaw

    FromRaw(void*)

    Creates a NullablePersistentPointer from a raw pointer.

    Declaration
    public static NullablePersistentPointer FromRaw(void* raw)
    Parameters
    Type Name Description
    void* raw

    The raw pointer specifying the target that the resulting NullablePersistentPointer will point to.

    Returns
    Type Description
    NullablePersistentPointer

    A NullablePersistentPointer that points to the same target as the specified raw pointer.

    Implements
    IPointer<TSelf>.FromRaw(void*)
    Remarks

    The raw pointer may be null. If it is, the resulting NullablePersistentPointer will represent a null pointer.

    The resulting NullablePersistentPointer will point to the same target as raw.

    FromRaw<T>(T*)

    Creates a NullablePersistentPointer<T> from a raw pointer.

    Declaration
    public static NullablePersistentPointer<T> FromRaw<T>(T* raw) where T : unmanaged
    Parameters
    Type Name Description
    T* raw

    The raw pointer specifying the target that the resulting NullablePersistentPointer<T> will point to.

    Returns
    Type Description
    NullablePersistentPointer<T>

    A NullablePersistentPointer<T> that points to the same target as the specified raw pointer.

    Type Parameters
    Name Description
    T

    The type of the target that the resulting NullablePersistentPointer<T> will point to.

    Remarks

    The raw pointer may be null. If it is, the resulting NullablePersistentPointer<T> will represent a null pointer.

    The resulting NullablePersistentPointer<T> will point to the same target as raw.

    © 2026 Felix Rüdiger. SemPtr and its documentation are licensed under the MIT license.