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

◆ Join() [6/7]

static string System.String.Join ( string? separator,
params string?[] value )
inlinestatic

Definition at line 1995 of file String.cs.

1996 {
1997 if (value == null)
1998 {
1999 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.value);
2000 }
2001 return JoinCore(separator.AsSpan(), new ReadOnlySpan<string>(value));
2002 }
static string JoinCore(ReadOnlySpan< char > separator, string[] value, int startIndex, int count)
Definition String.cs:2014

References System.String.JoinCore(), System.ThrowHelper.ThrowArgumentNullException(), and System.value.