mirror of
https://github.com/StarBeat/UnityDependencyAnalyzer.git
synced 2026-03-08 05:35:27 +08:00
42 lines
898 B
C#
42 lines
898 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
#nullable enable
|
|
using System.Buffers;
|
|
|
|
namespace MemoryPack {
|
|
|
|
#if NET7_0_OR_GREATER
|
|
|
|
public interface IFixedSizeMemoryPackable
|
|
{
|
|
static abstract int Size { get; }
|
|
}
|
|
|
|
#endif
|
|
|
|
public interface IMemoryPackFormatterRegister
|
|
{
|
|
#if NET7_0_OR_GREATER
|
|
static abstract void RegisterFormatter();
|
|
#endif
|
|
}
|
|
|
|
public interface IMemoryPackable<T> : IMemoryPackFormatterRegister
|
|
{
|
|
// note: serialize parameter should be `ref readonly` but current lang spec can not.
|
|
// see proposal https://github.com/dotnet/csharplang/issues/6010
|
|
|
|
#if NET7_0_OR_GREATER
|
|
static abstract void Serialize(ref MemoryPackWriter writer, ref T? value)
|
|
;
|
|
static abstract void Deserialize(ref MemoryPackReader reader, ref T? value);
|
|
#endif
|
|
}
|
|
|
|
} |