mirror of
https://github.com/GreemDev/Ryujinx
synced 2024-11-22 17:56:59 +01: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;
|
||
|
}
|
||
|
}
|
||
|
}
|