StaticStringMethodConcat(ReadOnlySpanChar, ReadOnlySpanChar, ReadOnlySpanChar, ReadOnlySpanChar) Method

Concatenates the string representations of four specified read-only character spans.

Definition

Namespace: FolkerKinzel.Strings
Assembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.5.0+6287955de434d14f61638ea0c3c40b499ae05cd1
C#
public static string Concat(
	ReadOnlySpan<char> str0,
	ReadOnlySpan<char> str1,
	ReadOnlySpan<char> str2,
	ReadOnlySpan<char> str3
)

Parameters

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.
str3  ReadOnlySpanChar
The fourth read-only character span to concatenate.

Return Value

String
The concatenated string representations of the values of str0, str1, str2 and str3.

See Also