mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-05-09 06:19:46 +00: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;
|
|
}
|
|
}
|
|
}
|