Guest User

Untitled

a guest
Feb 14th, 2018
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. namespace System.Linq
  2. {
  3. public static class LinqExtensions
  4. {
  5. public static string ToJoinString<T>(this IEnumerable<T> self)
  6. {
  7. return string.Join(", ", self);
  8. }
  9. }
  10. }
Add Comment
Please, Sign In to add comment