いつも忘れがちな配列からカンマ区切りで出力する方法です

public class Hello{
  public static void Main(){
  // Your code here!
  string[] dt = {“環境”,”開発”,”テスト”,”結合”};
  System.Console.WriteLine(string.Join(“,”,dt));
  }

 }