StaticStringMethodConcat(ReadOnlySpanChar, ReadOnlySpanChar) Method

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

Definition

Namespace: FolkerKinzel.Strings
Assembly: FolkerKinzel.Strings (in FolkerKinzel.Strings.dll) Version: 9.4.3+0b4e3cc14d7870504a77e224d298b921bfc6f2ee
C#
public static string Concat(
	ReadOnlySpan<char> str0,
	ReadOnlySpan<char> str1
)

Parameters

str0  ReadOnlySpanChar
The first read-only character span to concatenate.
str1  ReadOnlySpanChar
The first read-only character span to concatenate.

Return Value

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

See Also