Skip to content

Instantly share code, notes, and snippets.

@orhanveli
Created November 20, 2011 12:52
Show Gist options
  • Select an option

  • Save orhanveli/1380238 to your computer and use it in GitHub Desktop.

Select an option

Save orhanveli/1380238 to your computer and use it in GitHub Desktop.
c# joining array with comma
string[] ids = {"2343","2344","2345"};
string idString = String.Join(",",ids);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment