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

◆ JoinCore() [3/3]

static string System.String.JoinCore ( ReadOnlySpan< char > separator,
string[] value,
int startIndex,
int count )
inlinestaticprivate

Definition at line 2014 of file String.cs.

2015 {
2016 if (value == null)
2017 {
2018 throw new ArgumentNullException("value");
2019 }
2020 if (startIndex < 0)
2021 {
2022 throw new ArgumentOutOfRangeException("startIndex", SR.ArgumentOutOfRange_StartIndex);
2023 }
2024 if (count < 0)
2025 {
2026 throw new ArgumentOutOfRangeException("count", SR.ArgumentOutOfRange_NegativeCount);
2027 }
2028 if (startIndex > value.Length - count)
2029 {
2030 throw new ArgumentOutOfRangeException("startIndex", SR.ArgumentOutOfRange_IndexCountBuffer);
2031 }
2033 }
static string JoinCore(ReadOnlySpan< char > separator, string[] value, int startIndex, int count)
Definition String.cs:2014

References System.SR.ArgumentOutOfRange_IndexCountBuffer, System.SR.ArgumentOutOfRange_NegativeCount, System.SR.ArgumentOutOfRange_StartIndex, System.count, System.String.JoinCore(), System.startIndex, and System.value.

Referenced by System.String.Join(), System.String.Join(), System.String.Join(), System.String.Join(), System.String.Join(), System.String.Join(), System.String.Join(), System.String.Join< T >(), System.String.Join< T >(), System.String.JoinCore(), System.String.JoinCore(), and System.String.JoinCore< T >().