StaticStringMethodConcat(ReadOnlySpan`1Char, ReadOnlySpan`1Char, ReadOnlySpan`1Char) Method

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

Definition

Namespace: FolkerKinzel.Strings
Assembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.0+10a7d4d71aa960998e32ac0ac6c4fcbe4164c917
C#
public static string Concat(
	ReadOnlySpan<char> str0,
	ReadOnlySpan<char> str1,
	ReadOnlySpan<char> str2
)

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.

Return Value

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

See Also