Skip to content

Instantly share code, notes, and snippets.

@kyubuns
Created February 1, 2018 04:39
Show Gist options
  • Select an option

  • Save kyubuns/4677a7b6a41fbf820a5d9dfcf1ab9c81 to your computer and use it in GitHub Desktop.

Select an option

Save kyubuns/4677a7b6a41fbf820a5d9dfcf1ab9c81 to your computer and use it in GitHub Desktop.
namespace System.Linq
{
public static class LinqExtensions
{
public static string ToJoinString<T>(this IEnumerable<T> self)
{
return string.Join(", ", self);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment