Skip to content

Instantly share code, notes, and snippets.

@lisardggY
Created February 6, 2018 14:12
Show Gist options
  • Save lisardggY/143cfe91656b084255be8ac90013119f to your computer and use it in GitHub Desktop.
Save lisardggY/143cfe91656b084255be8ac90013119f to your computer and use it in GitHub Desktop.
public static class EnumerableExtensions
{
public static string StringJoin<T>(this IEnumerable<T> source, string delimiter)
{
return string.Join(delimiter, source);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment