mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-22 15:27:10 +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;
|
|
}
|
|
}
|
|
}
|