以下に列挙型のための素晴らしいユーティリティクラスです

publicstaticclassEnumHelper{publicstaticint[]ToIntArray<T>(T[] value){int[] result =newint[value.Length];for(int i =0; i < value.Length; i++)
            result[i]=Convert.ToInt32(value[i]);return result;}publicstatic T[]FromIntArray<T>(int[] value){
        T[] result =new T[value.Length];for(int i =0; i < value.Length; i++)
            result[i]=(T)Enum.ToObject(typeof(T),value[i]);return result;}internalstatic T Parse<T>(string value, T defaultValue){if(Enum.IsDefined(typeof(T), value))return(T)Enum.Parse(typeof(T), value);int num;if(int.TryParse(value,out num)){if(Enum.IsDefined(typeof(T), num))return(T)Enum.ToObject(typeof(T), num);}return defaultValue;}}

ます。https://www.cnblogs.com/zhangchenliang/archive/2013/05/24/3096358.htmlで再現

おすすめ

転載: blog.csdn.net/weixin_34111819/article/details/93495384