1. ホーム
  2. c#

[解決済み] 文字列配列から文字列への変換

2022-04-21 15:19:58

質問

文字列配列を1つの文字列に変換したい。

string[] test = new string[2];
test[0] = "Hello ";
test[1] = "World!";

Hello World!".のようなものが欲しいです。

どのように解決するのですか?

string[] test = new string[2];

test[0] = "Hello ";
test[1] = "World!";

string.Join("", test);