using System.IO; namespace TBL.CSharp.Serialization.Marshal; /// /// Marshal 以工厂方式反序列化的支持接口 /// public interface IMarshalSupportConstructor : IMarshalSupport { /// /// 从 读取数据并产出一个目标对象 /// T Load(Stream stream); }