Class DateTimeSerializer
Implements
Inherited Members
Namespace: Tenray.ZoneTree.Serializers
Assembly: ZoneTree.dll
Syntax
public sealed class DateTimeSerializer : ISerializer<DateTime>
Methods
| Improve this Doc View SourceDeserialize(Memory<byte>)
Deserialize the bytes into entry type.
Declaration
public DateTime Deserialize(Memory<byte> bytes)
Parameters
Type | Name | Description |
---|---|---|
Memory<byte> | bytes | The bytes to be deserialized. |
Returns
Type | Description |
---|---|
DateTime | The deserialized entry. |
Serialize(in DateTime)
Serialize the entry into byte array.
Declaration
public Memory<byte> Serialize(in DateTime entry)
Parameters
Type | Name | Description |
---|---|---|
DateTime | entry | The entry |
Returns
Type | Description |
---|---|
Memory<byte> | The serialized bytes. |