mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/PCK-Studio.git
synced 2026-06-27 18:25:33 +00:00
15 lines
294 B
C#
15 lines
294 B
C#
using System.Collections.Generic;
|
|
|
|
namespace QuickFont
|
|
{
|
|
class Helper
|
|
{
|
|
public static T[] ToArray<T>(ICollection<T> collection)
|
|
{
|
|
T[] output = new T[collection.Count];
|
|
collection.CopyTo(output, 0);
|
|
return output;
|
|
}
|
|
}
|
|
}
|