fix: 修复 2020编译器报错
parent
e5ce48dc7f
commit
ab0a27d835
|
|
@ -416,7 +416,7 @@ namespace Guru.Editor
|
|||
|
||||
private static bool IsInvalidLine(string line)
|
||||
{
|
||||
return (string.IsNullOrEmpty(line) || line.StartsWith(K_SPLITTER_TAB));
|
||||
return string.IsNullOrEmpty(line) || line.StartsWith(K_SPLITTER_TAB.ToString());
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue