C# Enum 타입을 int로 변환하는 Extention

반응형
        public static int ToInt<T>(this T enumValue) where T : Enum
        {
            return Convert.ToInt32(enumValue);
        }

 

반응형