mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-19 04:32:54 +00:00
13 lines
208 B
C#
13 lines
208 B
C#
using System;
|
|
|
|
namespace ARMeilleure.Common
|
|
{
|
|
static class EnumUtils
|
|
{
|
|
public static int GetCount(Type enumType)
|
|
{
|
|
return Enum.GetNames(enumType).Length;
|
|
}
|
|
}
|
|
}
|