配列を改行で分割した文字列にします
string[] lineArray = new string[] { "a", "b", "c", "d" };
string result = string.Join(Environment.NewLine, lineArray);
MessageBox.Show(result);
Go to list of users who liked
More than 1 year has passed since last update.
配列を改行で分割した文字列にします
string[] lineArray = new string[] { "a", "b", "c", "d" };
string result = string.Join(Environment.NewLine, lineArray);
MessageBox.Show(result);
Register as a new user and use Qiita more conveniently
Go to list of users who liked