mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-02-16 05:45:24 +00:00
17 lines
543 B
C#
17 lines
543 B
C#
namespace SabreTools.Serialization.Interfaces
|
|
{
|
|
/// <summary>
|
|
/// Defines how to serialize to byte arrays
|
|
/// </summary>
|
|
public interface IByteSerializer<T>
|
|
{
|
|
/// <summary>
|
|
/// Serialize a <typeparamref name="T"/> into a byte array
|
|
/// </summary>
|
|
/// <typeparam name="T">Type of object to serialize from</typeparam>
|
|
/// <param name="obj">Data to serialize</param>
|
|
/// <returns>Filled object on success, null on error</returns>
|
|
byte[]? SerializeArray(T? obj);
|
|
}
|
|
}
|