Committed everything

This commit is contained in:
2021-06-30 21:39:19 +10:00
commit fcfa8e7213
525 changed files with 49440 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace Ink.Runtime
{
public static class StringExt
{
public static string Join<T>(string separator, List<T> objects)
{
var sb = new StringBuilder ();
var isFirst = true;
foreach (var o in objects) {
if (!isFirst)
sb.Append (separator);
sb.Append (o.ToString ());
isFirst = false;
}
return sb.ToString ();
}
}
}