using System.IO; namespace TBL.CSharp.Serialization.Marshal; /// /// Marshal 支持接口 /// public interface IMarshalSupport { /// /// 将 序列化入 当中 /// void Write(T self, Stream stream); }