Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
MakeSeparatorList()
[2/3]
void
System.String.MakeSeparatorList
(
string
separator
,
ref
ValueListBuilder
< int >
sepListBuilder
)
inline
private
Definition at line
2950
of file
String.cs
.
2951
{
2952
int
length
=
separator
.Length;
2953
for
(
int
i = 0;
i
<
Length
;
i
++)
2954
{
2955
if
(
this
[i] ==
separator
[0] &&
length
<=
Length
- i && (
length
== 1 || this.AsSpan(i,
length
).SequenceEqual(
separator
)))
2956
{
2957
sepListBuilder
.Append(i);
2958
i
+=
length
- 1;
2959
}
2960
}
2961
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System.String.Length
int Length
Definition
String.cs:52
System.Text.RegularExpressions.ExceptionArgument.i
@ i
System.ExceptionArgument.length
@ length
References
System.length
, and
System.String.Length
.
System
String
Generated by
1.10.0