using System.Collections.Generic; using System; namespace IFramework.Serialization.DataTable { /// /// 数据读取器 /// public interface IDataReader : IDisposable { /// /// 获取 /// /// /// List Get(); /// /// 标题栏 /// List headNames { get; } /// /// 行 /// List> rows { get; } } }