创建字典DataTable - CreateBasicDataTable
2017-02-19 13:45:18 访问(1448) 赞(0) 踩(0)
/// <summary>
/// 创建字典DataTable - CreateBasicDataTable
/// </summary>
/// <returns></returns>
public DataTable CreateBasicDataTable()
{
DataTable theResult = new DataTable();
theResult.Columns.Add("ID", typeInt32);
theResult.Columns.Add("TheName", typeString);
return theResult;
}
标签:
创建字典DataTable - CreateBasicDataTable 


上一条:
下一条:
相关评论
发表评论