mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 08:57:11 +02:00
12 lines
208 B
C#
12 lines
208 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Common
|
|
{
|
|
static class EnumUtils
|
|
{
|
|
public static int GetCount(Type enumType)
|
|
{
|
|
return Enum.GetNames(enumType).Length;
|
|
}
|
|
}
|
|
}
|