Use ToString instead of Substring

This commit is contained in:
Dean Herbert 2020-01-26 17:40:38 +09:00
parent 50ab5a7d07
commit eabb5a8701
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ private void handleEvents(string line)
++depth;
}
line = line.Substring(depth);
line = lineSpan.ToString();
decodeVariables(ref line);