update: 修复分隔符报错

deeplink
胡宇飞 2024-02-04 11:43:00 +08:00
parent bc67eb6301
commit 3673e3c594
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ namespace Guru.Editor
return false; return false;
} }
private static string[] GetStringArray(string line, int startIndex = 0, int length = 0, string spliter = "\t") private static string[] GetStringArray(string line, int startIndex = 0, int length = 0, char spliter = '\t')
{ {
if (IsInvalidLine(line)) return null; if (IsInvalidLine(line)) return null;