fix(core): Updates slice with range selectors (#583)
- [X] Replaces Span slicing with range selection - [X] Replaces string slicing with range selection
This commit is contained in:
parent
9f9d990f85
commit
a0893b68c0
62 changed files with 363 additions and 382 deletions
|
|
@ -101,14 +101,14 @@ namespace Server.Tests
|
|||
{
|
||||
while (v.Length >= startIndex)
|
||||
{
|
||||
list.Add(v.Substring(0, startIndex));
|
||||
list.Add(v[..startIndex]);
|
||||
|
||||
if (list.Count == maxLines)
|
||||
{
|
||||
return list;
|
||||
}
|
||||
|
||||
v = v.Substring(startIndex);
|
||||
v = v[startIndex..];
|
||||
}
|
||||
|
||||
current = v;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue