Files
ExcelTool/ExcelTool/Parser/TableExcelRow.cs
T
dingxiaowei 52f0c31497 代码优化
2022-08-26 19:00:58 +08:00

19 lines
353 B
C#

using System.Collections.Generic;
namespace ExcelTool
{
public class TableExcelRow
{
public List<string> StrList { get; set; }
public TableExcelRow()
{
StrList = new List<string>();
}
public void Add(string str)
{
StrList.Add(str);
}
}
}