Created
February 6, 2018 14:12
-
-
Save lisardggY/143cfe91656b084255be8ac90013119f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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