(1/2) #1210 Untangling QueueResupplyActivities

This commit is contained in:
Chris Forbes
2011-12-03 10:11:05 +13:00
parent b8c4ff8668
commit 7b06e39390
2 changed files with 28 additions and 2 deletions

View File

@@ -176,5 +176,10 @@ namespace OpenRA
{
return string.Join(j, ts.Select(t => t.ToString()).ToArray());
}
public static IEnumerable<T> Append<T>( this IEnumerable<T> ts, params T[] moreTs)
{
return ts.Concat(moreTs);
}
}
}