1
0
mirror of https://gitlab.com/Deukhoofd/DeukBot4.git synced 2026-04-04 03:30:05 +00:00

Initial work

This commit is contained in:
2018-03-29 01:34:48 +02:00
commit 3a85a9f18f
22 changed files with 1008 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System.Collections.Generic;
namespace DeukBot4.Utilities
{
public static class IEnumerableExtensions
{
public static string Join(this IEnumerable<string> arr, string sep)
{
return string.Join(sep, arr);
}
}
}