StaticStringMethodConcat(ReadOnlySpan`1Char, ReadOnlySpan`1Char, ReadOnlySpan`1Char) Method
Concatenates the string representations of three specified read-only character
spans.
Namespace: FolkerKinzel.StringsAssembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
public static string Concat(
ReadOnlySpan<char> str0,
ReadOnlySpan<char> str1,
ReadOnlySpan<char> str2
)
Public Shared Function Concat (
str0 As ReadOnlySpan(Of Char),
str1 As ReadOnlySpan(Of Char),
str2 As ReadOnlySpan(Of Char)
) As String
public:
static String^ Concat(
ReadOnlySpan<wchar_t> str0,
ReadOnlySpan<wchar_t> str1,
ReadOnlySpan<wchar_t> str2
)
static member Concat :
str0 : ReadOnlySpan<char> *
str1 : ReadOnlySpan<char> *
str2 : ReadOnlySpan<char> -> string
- str0 ReadOnlySpanChar
- The first read-only character span to concatenate.
- str1 ReadOnlySpanChar
- The first read-only character span to concatenate.
- str2 ReadOnlySpanChar
- The third read-only character span to concatenate.
StringThe concatenated string representations of the values of
str0,
str1 and
str2.