Class BinarySerializerHelper
Inheritance
BinarySerializerHelper
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 Parameters
|
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 Parameters
|
Improve this Doc
View Source
FromByteArray<T>(Memory<byte>)
Declaration
public static T FromByteArray<T>(Memory<byte> data) where T : unmanaged
Parameters
Returns
Type Parameters
|
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
Returns
Type Parameters
|
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 Parameters