Search Results for

    Show / Hide Table of Contents

    Class BinarySerializerHelper

    Inheritance
    object
    BinarySerializerHelper
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: Tenray.ZoneTree.Serializers
    Assembly: ZoneTree.dll
    Syntax
    public static class BinarySerializerHelper

    Methods

    | Improve this Doc View Source

    FromByteArray<T>(byte[])

    Declaration
    public static T FromByteArray<T>(byte[] data) where T : unmanaged
    Parameters
    Type Name Description
    byte[] data
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T
    | Improve this Doc View Source

    FromByteArray<T>(byte[], int)

    Declaration
    public static T FromByteArray<T>(byte[] data, int off) where T : unmanaged
    Parameters
    Type Name Description
    byte[] data
    int off
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T
    | Improve this Doc View Source

    FromByteArray<T>(Memory<byte>)

    Declaration
    public static T FromByteArray<T>(Memory<byte> data) where T : unmanaged
    Parameters
    Type Name Description
    Memory<byte> data
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T
    | Improve this Doc View Source

    FromByteArray<T>(Memory<byte>, int)

    Declaration
    public static T FromByteArray<T>(Memory<byte> data, int off) where T : unmanaged
    Parameters
    Type Name Description
    Memory<byte> data
    int off
    Returns
    Type Description
    T
    Type Parameters
    Name Description
    T
    | Improve this Doc View Source

    ToByteArray<T>(in T)

    Declaration
    public static byte[] ToByteArray<T>(in T value) where T : unmanaged
    Parameters
    Type Name Description
    T value
    Returns
    Type Description
    byte[]
    Type Parameters
    Name Description
    T
    • Improve this Doc
    • View Source
    In This Article
    Back to top Copyright © 2022 Tenray.io