Commit f76a8b56 LN

元器件解析文件格式兼容处理

1 个父辈 57f23ad0
......@@ -110,10 +110,11 @@ namespace TSA_V.LoadCSVLibrary
Dictionary<string, int> propIndexMap = new Dictionary<string, int>();
foreach (var line in lines)
{
var array = line.Split(Spilt_Char);
var newLine = line.Replace("\"", "");
var array = newLine.Split(Spilt_Char);
if (index == 0)
{
propIndexMap = GetProTitleIndex(line, proTitleMap);
propIndexMap = GetProTitleIndex(newLine, proTitleMap);
}
else
{
......
此文件类型无法预览
支持 Markdown 格式
你添加了 0 到此讨论。请谨慎行事。
Finish editing this message first!