C#文字列String.Concat
String.Join

String.Concat文字列

Length

文字列を連結します。

문법

String.Concat(str0, str1, ...)

예제

아래 값을 입력하면 예제에 즉시 반영됩니다.

string
result
String
Console
WriteLine
string result = String.Concat("Hello", " ", "World");
Console.WriteLine(result);   // "Hello World"