using System.IO; namespace TBL.CSharp.Serialization.Marshal; /// /// Marshal 以就地方式反序列化的支持接口 /// public interface IMarshalSupportPlacement : IMarshalSupport { /// /// 恢复 中记录的状态 /// void Restore(Stream stream, T target); }