mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-17 07:52:42 +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;
|
|
}
|
|
}
|
|
}
|