using System.Collections.Generic;
using System;
namespace IFramework.Serialization.DataTable
{
///
/// 数据写入器
///
public interface IDataWriter:IDisposable
{
///
/// 写入
///
///
///
void Write(List source);
///
/// 写入文件
///
///
///
///
string WriteString(List source);
///
/// 写入
///
///
///
///
string WriteString(List headNames, List> rows);
///
/// 写入文件
///
///
///
///
void Write(List headNames, List> rows);
}
}