Enum from string, int, etc

后端 未结 7 934
伪装坚强ぢ
伪装坚强ぢ 2021-01-17 07:23

Using extension method we can create methods to convert an enum to other datatype like string, int by creating extension methods ToInt(), ToString()

相关标签:
7条回答
  • 2021-01-17 07:55

    why do you want FromInt an extenstion method versus just casting it?

    MyEnum fromInt;
    if(Enum.IsDefined(typeof(MyEnum), intvalue))
    {
        fromInt = (MyEnum) intvalue;
    }
    else
    {
        //not valid
    }
    

    alternatively, for strings, you can use Enum.TryParse

    MyEnum fromString;
    if (Enum.TryParse<MyEnum>(stringvalue, out fromString))
    {
        //succeeded
    }
    else
    {
        //not valid
    }
    
    0 讨论(0)
  • 2021-01-17 08:04

    Do you really need those extension methods?

    MyEnum fromInt = (MyEnum)someIntValue;
    MyEnum fromString = (MyEnum)Enum.Parse(typeof(MyEnum), someStringValue, true);
    
    int intFromEnum = (int)MyEnum.SomeValue;
    string stringFromEnum = MyEnum.SomeValue.ToString();
    
    0 讨论(0)
  • 2021-01-17 08:05

    The other way around would be possibly... the other way around ;) Extend int and string with generic extension methods which will take as type parameter the type of an enum:

    public static TEnum ToEnum<TEnum>(this int val)
    {
        return (TEnum) System.Enum.ToObject(typeof(TEnum), val);
    }
    

    public static TEnum ToEnum<TEnum>(this string val)
    {
        return (TEnum) System.Enum.Parse(typeof(TEnum), val);
    }
    

    Usage:

    var redFromInt = 141.ToEnum<System.Drawing.KnownColor>();
    var redFromString = "Red".ToEnum<System.Drawing.KnownColor>();
    

    There is unfortunately no generic constraint for Enums, so we have to check TEnum type during runtime; to simplify we'll leave that verification to Enum.ToObject and Enum.Parse methods.

    0 讨论(0)
  • 2021-01-17 08:06

    You can either make extension methods on int and string.

    Or make static method on some other static class. Maybe something like EnumHelper.FromInt(int).

    But I would pose one question : Why do you want to convert to string or int? Its not how you normaly work with enumerables, except maybe serialisation. But that should be handled by some kind of infrastructure, not your own code.

    0 讨论(0)
  • 2021-01-17 08:08

    Another approach (for the string part of your question):

    /// <summary>
    /// Static class for generic parsing of string to enum
    /// </summary>
    /// <typeparam name="T">Type of the enum to be parsed to</typeparam>
    public static class Enum<T>
    {
        /// <summary>
        /// Parses the specified value from string to the given Enum type.
        /// </summary>
        /// <param name="value">The value.</param>
        /// <returns></returns>
        public static T Parse(string value)
        {
            //Null check
            if(value == null) throw new ArgumentNullException("value");
            //Empty string check
            value = value.Trim();
            if(value.Length == 0) throw new ArgumentException("Must specify valid information for parsing in the string", "value");
            //Not enum check
            Type t = typeof(T);
            if(!t.IsEnum) throw new ArgumentException("Type provided must be an Enum", "T");
    
            return (T)Enum.Parse(typeof(T), value);
        }
    }
    

    (Partially inspired by: http://devlicious.com/blogs/christopher_bennage/archive/2007/09/13/my-new-little-friend-enum-lt-t-gt.aspx)

    0 讨论(0)
  • 2021-01-17 08:11

    I would avoid polluting int or string with extension methods for enums, instead a good old fashioned static helper class might be in order.

    public static class EnumHelper
    {
       public static T FromInt<T>(int value)
       {
           return (T)value;
       }
    
      public static T FromString<T>(string value)
      {
         return (T) Enum.Parse(typeof(T),value);
      }
    }
    
    0 讨论(0)
提交回复
热议问题