Files
ExcelTool/ExcelTool/Parser/TableExcelRow.cs
T

15 lines
269 B
C#

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