Files
SabreTools.Serialization/Interfaces/IByteSerializer.cs
2023-11-07 23:30:26 -05:00

19 lines
675 B
C#

namespace SabreTools.Serialization.Interfaces
{
/// <summary>
/// Defines how to serialize to and from byte arrays
/// </summary>
public interface IByteSerializer<T>
{
/// <summary>
/// Deserialize a byte array into <typeparamref name="T"/>
/// </summary>
/// <typeparam name="T">Type of object to deserialize to</typeparam>
/// <param name="data">Byte array to parse</param>
/// <param name="offset">Offset into the byte array</param>
/// <returns>Filled object on success, null on error</returns>
T? Deserialize(byte[]? data, int offset);
// TODO: Add serialization method
}
}