Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ AppendJoinCore< T >() [2/2]

unsafe StringBuilder System.Text.StringBuilder.AppendJoinCore< T > ( char * separator,
int separatorLength,
T[] values )
inlineprivate

Definition at line 1312 of file StringBuilder.cs.

1313 {
1314 if (values == null)
1315 {
1316 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.values);
1317 }
1318 if (values.Length == 0)
1319 {
1320 return this;
1321 }
1322 if (values[0] != null)
1323 {
1324 Append(values[0].ToString());
1325 }
1326 for (int i = 1; i < values.Length; i++)
1327 {
1329 if (values[i] != null)
1330 {
1331 Append(values[i].ToString());
1332 }
1333 }
1334 return this;
1335 }
override string ToString()
StringBuilder Append(char value, int repeatCount)

References System.Text.StringBuilder.Append(), System.ThrowHelper.ThrowArgumentNullException(), System.Text.StringBuilder.ToString(), and System.values.