mirror of
https://gitlab.com/Deukhoofd/DeukBot4.git
synced 2026-04-04 03:30:05 +00:00
Initial work
This commit is contained in:
12
DeukBot4/Utilities/IEnumerableExtensions.cs
Normal file
12
DeukBot4/Utilities/IEnumerableExtensions.cs
Normal 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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user