/*********************************************************************************
*Author: OnClick
*Version: 0.0.1
*UnityVersion: 2018.3.11f1
*Date: 2019-09-08
*Description: IFramework
*History: 2018.11--
*********************************************************************************/
using System.Collections.Generic;
using System.Text;
namespace IFramework.Serialization.DataTable
{
///
/// 数据行
///
public interface IDataRow
{
///
/// 读取一行
///
/// 行String
/// 标题行
///
List ReadLine(string val, List headNames);
///
/// 读取标题行
///
/// 行String
///
List ReadHeadLine(string val);
///
/// 写入一行
///
/// 写入的信息
///
///
void WriteLine(List cols, StringBuilder builder);
///
/// 写入标题行
///
/// 写入的标题
///
///
void WriteHeadLine(List headNames, StringBuilder builder);
}
}