当前位置:  开发笔记 > 编程语言 > 正文

在C#中将int转换为枚举

如何解决《在C#中将int转换为枚举》经验,为你挑选了22个好方法。

如何在C#中int投射enum



1> FlySwat..:

从字符串:

YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);
// the foo.ToString().Contains(",") check is necessary for enumerations marked with an [Flags] attribute
if (!Enum.IsDefined(typeof(YourEnum), foo) && !foo.ToString().Contains(","))
  throw new InvalidOperationException($"{yourString} is not an underlying value of the YourEnum enumeration.")

来自int:

YourEnum foo = (YourEnum)yourInt;

更新:

从数字你也可以

YourEnum foo = (YourEnum)Enum.ToObject(typeof(YourEnum) , yourInt);


请注意,如果您的代码被混淆,Enum.Parse将无法工作.在混淆后的运行时,将字符串与枚举名称进行比较,此时枚举的名称不是您期望的那样.因此,您的解析将在成功之前失败.
**小心**如果您使用上面的"from a string"语法并传入一个无效的字符串(例如"2342342" - 假设这不是您的枚举值),它实际上会允许一个错误!你的枚举将具有该值(2342342),即使它不是枚举本身的有效选择.
我觉得这个答案现在有点过时了.对于字符串,你现在应该使用`var result = Enum.TryParse(yourString,out yourEnum)`(并检查结果以确定转换是否失败).
@FlySwat,如果`YourEnum`是动态的,只会在运行时知道,我想要的是转换为'Enum`.
通过在调用中添加一个`true`参数值,也可以使`Enum.Parse`不区分大小写:`YourEnum foo =(YourEnum)Enum.Parse(typeof(YourEnum),yourString,true);`
@Santhos是的,有'Enum.IsDefined()`来检查你想要转换的值是否存在于你的枚举中.
@JustinTConroy我不知道我是否同意这一点.在我的程序中,如果转换失败,则通常是不可恢复的错误,因此我希望抛出异常.
Parse函数提供了一个令人烦恼的异常的典型示例.也就是说,在完全非特殊情况下抛出异常,通常是由于不幸的设计决定.C#的开发人员认识到这种不幸的设计,后来又添加了TryParse来解决这个问题.TryParse返回一个布尔值,指示解析是成功还是失败,因此您应该使用该布尔值而不是异常处理程序.有关详细信息,请参阅[Eric Lippert关于烦恼异常的博客文章](http://blogs.msdn.com/b/ericlippert/archive/2008/09/10/vexing-exceptions.aspx).
@JustinTConroy除了它不是.当你调用`Parse`时,你相信输入值是正确的,当它不是时,它就是代码中的一个错误(并且存在应该存在的异常).如果您正在处理用户输入,则应始终调用`TryParse`,因为无效输入不是例外.您链接的文章在"此方法的99%用例正在转换用户输入的字符串"中提到这一点,这就是错误,该方法不是为处理用户输入而设计的,`TryParse`是.

2> Matt Hamilto..:

刚刚施展它:

MyEnum e = (MyEnum)3;

您可以使用Enum.IsDefined检查它是否在范围内:

if (Enum.IsDefined(typeof(MyEnum), 3)) { ... }


请注意,如果使用Flags属性,则不能使用Enum.IsDefined,并且值是标志的组合,例如:Keys.L | Keys.Control
关于`Enum.IsDefined`,请注意它可能很危险:http://msdn.microsoft.com/en-us/library/ms229025(VS.90).aspx
@ mac9416我试图在https://gist.github.com/alowdon/f7354cda97bac70b44e1c04bc0991bcc上给出一个简洁的示例-基本上通过使用`IsDefined`来检查输入值,您容易受到后来添加新枚举值的人的攻击。通过“ IsDefined”检查(因为新值存在于新代码中),但可能不适用于您编写的原始代码。因此,显式指定代码能够处理的枚举值更安全。

3> Abdul Munim..:

或者,使用扩展方法而不是单行:

public static T ToEnum(this string enumString)
{
    return (T) Enum.Parse(typeof (T), enumString);
}

用法:

Color colorEnum = "Red".ToEnum();

要么

string color = "Red";
var colorEnum = color.ToEnum();


为了处理用户输入,调用Enum.Parse的重载可能是个好主意,它允许你指定比较不区分大小写(即用户输入"red"(小写)会导致上述代码崩溃而不进行此更改.)
方便,但问题特别询问有关整数.
如果字符串是整数(例如“ 2”),也可以使用
如果enumString为null,则会抛出异常(昨天有类似的问题).考虑使用TryParse而不是Parse.TryParse还将检查T是否为枚举类型

4> atlaste..:

我想要得到一个完整的答案,人们必须知道enums如何在.NET内部工作.

事情怎么样

.NET中的枚举是一组将一组值(字段)映射到基本类型(默认值为int)的结构.但是,您实际上可以选择枚举映射到的整数类型:

public enum Foo : short

在这种情况下,枚举被映射到short数据类型,这意味着它将作为short存储在内存中,并在您投射和使用它时表现为short.

如果从IL的角度来看它,(normal,int)枚举如下所示:

.class public auto ansi serializable sealed BarFlag extends System.Enum
{
    .custom instance void System.FlagsAttribute::.ctor()
    .custom instance void ComVisibleAttribute::.ctor(bool) = { bool(true) }

    .field public static literal valuetype BarFlag AllFlags = int32(0x3fff)
    .field public static literal valuetype BarFlag Foo1 = int32(1)
    .field public static literal valuetype BarFlag Foo2 = int32(0x2000)

    // and so on for all flags or enum values

    .field public specialname rtspecialname int32 value__
}

这里应该引起注意的是,它value__与枚举值分开存储.在Foo上面的枚举的情况下,类型value__是int16.这基本上意味着只要类型匹配,您就可以在枚举中存储您想要的任何内容.

在这一点上,我想指出这System.Enum是一个值类型,这基本上意味着BarFlag将占用内存中的4个字节Foo并将占用2 - 例如底层类型的大小(它实际上比这更复杂,但是嘿...).

答案

因此,如果您有一个要映射到枚举的整数,则运行时只需执行两项操作:复制4个字节并将其命名为其他名称(枚举的名称).复制是隐式的,因为数据存储为值类型 - 这基本上意味着如果使用非托管代码,则可以简单地交换枚举和整数而无需复制数据.

为了使其安全,我认为最佳做法是知道底层类型是相同的或隐式可转换的,并确保存在枚举值(默认情况下不会检查它们!).

要查看其工作原理,请尝试以下代码:

public enum MyEnum : int
{
    Foo = 1,
    Bar = 2,
    Mek = 5
}

static void Main(string[] args)
{
    var e1 = (MyEnum)5;
    var e2 = (MyEnum)6;

    Console.WriteLine("{0} {1}", e1, e2);
    Console.ReadLine();
}

请注意,施法e2也有效!从上面的编译器角度来看,这是有道理的:value__字段只用5或6填充,当Console.WriteLine调用时ToString(),名称e1解析而名称e2不是.

如果这不是您的意图,请使用Enum.IsDefined(typeof(MyEnum), 6)以检查您正在投射的值是否映射到定义的枚举.

另请注意,我明确了枚举的基础类型,即使编译器实际检查了这一点.我这样做是为了确保我不会遇到任何意外.要查看这些意外情况,您可以使用以下代码(实际上我已经看到这在数据库代码中发生了很多):

public enum MyEnum : short
{
    Mek = 5
}

static void Main(string[] args)
{
    var e1 = (MyEnum)32769; // will not compile, out of bounds for a short

    object o = 5;
    var e2 = (MyEnum)o;     // will throw at runtime, because o is of type int

    Console.WriteLine("{0} {1}", e1, e2);
    Console.ReadLine();
}


@Rolan我有时希望更多的人会这样问.:-)说实话,我真的不知道; 我试着了解事情是如何运作的,并且只要我能得到它就能获得信息.我确实阅读了C#标准,但我也经常用Reflector反编译代码(我甚至经常查看x86汇编程序代码)并做了大量的小实验.此外,在这种情况下,了解其他语言也有帮助; 我现在已经做了大约30年的CS,并且在某些时候某些事情变得"符合逻辑" - f.ex. 枚举应该是整数类型,因为否则互操作会破坏(或者你的表现会消失).
我认为正确进行软件工程的关键是了解工作原理.对我而言,这意味着如果您编写一段代码,就会知道它大致转换为f.ex. 处理器操作和内存提取/写入.如果你问如何达到这个水平,我建议建立一大堆小测试用例,让它们变得更加艰难,每次尝试预测结果,然后测试它们(包括反编译等).在弄清楚所有细节和所有特征后,您可以检查(无聊)标准是否正确.至少,这将是我的方法.
我意识到这是一个老帖子,但是你如何在c#中获得这种知识水平?这是通过阅读C#规范吗?

5> 小智..:

请看以下示例:

int one = 1;
MyEnum e = (MyEnum)one;



6> MSkuta..:

我正在使用这段代码将int转换为我的枚举:

if (typeof(YourEnum).IsEnumDefined(valueToCast)) return (YourEnum)valueToCast;
else { //handle it here, if its not defined }

我觉得这是最好的解决方案.



7> Tawani..:

Below is a nice utility class for Enums

public static class EnumHelper
{
    public static int[] ToIntArray(T[] value)
    {
        int[] result = new int[value.Length];
        for (int i = 0; i < value.Length; i++)
            result[i] = Convert.ToInt32(value[i]);
        return result;
    }

    public static T[] FromIntArray(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;
    }


    internal static T Parse(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;
    }
}



8> 小智..:

对于数值,这更安全,因为它将返回一个对象,无论如何:

public static class EnumEx
{
    static public bool TryConvert(int value, out T result)
    {
        result = default(T);
        bool success = Enum.IsDefined(typeof(T), value);
        if (success)
        {
            result = (T)Enum.ToObject(typeof(T), value);
        }
        return success;
    }
}



9> 小智..:

如果您已准备好使用4.0 .NET Framework,那么新的Enum.TryParse()函数非常有用并且可以与[Flags]属性配合使用.请参见Enum.TryParse方法(String,TEnum%)


从字符串转换时这很有用.但是当从int转换时不是.

10> Evan M..:

如果您有一个充当位掩码的整数并且可以表示[Flags]枚举中的一个或多个值,则可以使用此代码将各个标志值解析为列表:

for (var flagIterator = 0; flagIterator < 32; flagIterator++)
{
    // Determine the bit value (1,2,4,...,Int32.MinValue)
    int bitValue = 1 << flagIterator;

    // Check to see if the current flag exists in the bit mask
    if ((intValue & bitValue) != 0)
    {
        // If the current flag exists in the enumeration, then we can add that value to the list
        // if the enumeration has that flag defined
        if (Enum.IsDefined(typeof(MyEnum), bitValue))
            Console.WriteLine((MyEnum)bitValue);
    }
}

请注意,这假定底层类型enum是带符号的32位整数.如果它是一个不同的数字类型,你必须更改硬编码32以反映该类型中的位(或以编程方式派生它Enum.GetUnderlyingType())



11> 小智..:

有时你有一个MyEnum类型的对象.喜欢

var MyEnumType = typeof(MyEnumType);

然后:

Enum.ToObject(typeof(MyEnum), 3)



12> Daniel Fishe..:

这是一个标志枚举感知安全转换方法:

public static bool TryConvertToEnum(this int instance, out T result)
  where T: Enum
{
  var enumType = typeof (T);
  var success = Enum.IsDefined(enumType, instance);
  if (success)
  {
    result = (T)Enum.ToObject(enumType, instance);
  }
  else
  {
    result = default(T);
  }
  return success;
}



13> Shivprasad K..:

在此输入图像描述

要将字符串转换为ENUM或int转换为ENUM常量,我们需要使用Enum.Parse函数.这是一个YouTube视频https://www.youtube.com/watch?v=4nhx4VwdRDk ,它实际上演示了字符串,同样适用于int.

代码如下所示,其中"red"是字符串,"MyColors"是具有颜色常数的颜色ENUM.

MyColors EnumColors = (MyColors)Enum.Parse(typeof(MyColors), "Red");



14> Ted..:

稍微远离原始问题,但我找到了Stack Overflow问题的答案从枚举中获取int值非常有用.创建一个带有public const int属性的静态类,允许您轻松地收集一堆相关的int常量,然后int在使用它们时不必将它们强制转换.

public static class Question
{
    public static readonly int Role = 2;
    public static readonly int ProjectFunding = 3;
    public static readonly int TotalEmployee = 4;
    public static readonly int NumberOfServers = 5;
    public static readonly int TopBusinessConcern = 6;
}

显然,一些枚举类型的功能将会丢失,但是为了存储一堆数据库id常量,它似乎是一个非常整洁的解决方案.


枚举取代了这样的整数常量的使用,因为它们提供了更多的类型安全性

15> CZahrobsky..:

这将整数或字符串解析为目标枚举,并使用泛型(如上面的Tawani实用程序类中的泛型)在dot.NET 4.0中进行部分匹配.我用它来转换可能不完整的命令行开关变量.由于枚举不能为null,因此您应该在逻辑上提供默认值.它可以像这样调用:

var result = EnumParser.Parse(valueToParse, MyEnum.FirstValue);

这是代码:

using System;

public class EnumParser where T : struct
{
    public static T Parse(int toParse, T defaultVal)
    {
        return Parse(toParse + "", defaultVal);
    }
    public static T Parse(string toParse, T defaultVal) 
    {
        T enumVal = defaultVal;
        if (defaultVal is Enum && !String.IsNullOrEmpty(toParse))
        {
            int index;
            if (int.TryParse(toParse, out index))
            {
                Enum.TryParse(index + "", out enumVal);
            }
            else
            {
                if (!Enum.TryParse(toParse + "", true, out enumVal))
                {
                    MatchPartialName(toParse, ref enumVal);
                }
            }
        }
        return enumVal;
    }

    public static void MatchPartialName(string toParse, ref T enumVal)
    {
        foreach (string member in enumVal.GetType().GetEnumNames())
        {
            if (member.ToLower().Contains(toParse.ToLower()))
            {
                if (Enum.TryParse(member + "", out enumVal))
                {
                    break;
                }
            }
        }
    }
}

仅供参考: 问题是有关整数的问题,没有人提到它也会在Enum.TryParse()中明确转换



16> Will Yu..:

从字符串:( Enum.Parse已过期,使用Enum.TryParse)

enum Importance
{}

Importance importance;

if (Enum.TryParse(value, out importance))
{
}


这个问题专门询问整数.
请你编辑你的答案,让每个人都知道Enum.TryParse会处理枚举的值或名称的字符串(我无法抗拒)

17> Kamran Shahi..:

以下是稍微好一点的扩展方法

public static string ToEnumString(this int enumValue)
        {
            var enumString = enumValue.ToString();
            if (Enum.IsDefined(typeof(TEnum), enumValue))
            {
                enumString = ((TEnum) Enum.ToObject(typeof (TEnum), enumValue)).ToString();
            }
            return enumString;
        }



18> LawMan..:

在我的例子中,我需要从WCF服务返回枚举.我还需要一个友好的名称,而不仅仅是enum.ToString().

这是我的WCF课程.

[DataContract]
public class EnumMember
{
    [DataMember]
    public string Description { get; set; }

    [DataMember]
    public int Value { get; set; }

    public static List ConvertToList()
    {
        Type type = typeof(T);

        if (!type.IsEnum)
        {
            throw new ArgumentException("T must be of type enumeration.");
        }

        var members = new List();

        foreach (string item in System.Enum.GetNames(type))
        {
            var enumType = System.Enum.Parse(type, item);

            members.Add(
                new EnumMember() { Description = enumType.GetDescriptionValue(), Value = ((IConvertible)enumType).ToInt32(null) });
        }

        return members;
    }
}

这是从Enum获取描述的Extension方法.

    public static string GetDescriptionValue(this T source)
    {
        FieldInfo fileInfo = source.GetType().GetField(source.ToString());
        DescriptionAttribute[] attributes = (DescriptionAttribute[])fileInfo.GetCustomAttributes(typeof(DescriptionAttribute), false);            

        if (attributes != null && attributes.Length > 0)
        {
            return attributes[0].Description;
        }
        else
        {
            return source.ToString();
        }
    }

执行:

return EnumMember.ConvertToList();



19> gmail user..:

不同的方式来投,并从 Enum

enum orientation : byte
{
 north = 1,
 south = 2,
 east = 3,
 west = 4
}

class Program
{
  static void Main(string[] args)
  {
    orientation myDirection = orientation.north;
    Console.WriteLine(“myDirection = {0}”, myDirection); //output myDirection =north
    Console.WriteLine((byte)myDirection); //output 1

    string strDir = Convert.ToString(myDirection);
        Console.WriteLine(strDir); //output north

    string myString = “north”; //to convert string to Enum
    myDirection = (orientation)Enum.Parse(typeof(orientation),myString);


 }
}



20> Franki1986..:

我不知道在哪里获得此枚举扩展的一部分,但它来自stackoverflow.对不起,我很抱歉!但我拿了这个并用Flags修改它的枚举.对于带有Flags的枚举,我这样做了:

  public static class Enum where T : struct
  {
     private static readonly IEnumerable All = Enum.GetValues(typeof (T)).Cast();
     private static readonly Dictionary Values = All.ToDictionary(k => Convert.ToInt32(k));

     public static T? CastOrNull(int value)
     {
        T foundValue;
        if (Values.TryGetValue(value, out foundValue))
        {
           return foundValue;
        }

        // For enums with Flags-Attribut.
        try
        {
           bool isFlag = typeof(T).GetCustomAttributes(typeof(FlagsAttribute), false).Length > 0;
           if (isFlag)
           {
              int existingIntValue = 0;

              foreach (T t in Enum.GetValues(typeof(T)))
              {
                 if ((value & Convert.ToInt32(t)) > 0)
                 {
                    existingIntValue |= Convert.ToInt32(t);
                 }
              }
              if (existingIntValue == 0)
              {
                 return null;
              }

              return (T)(Enum.Parse(typeof(T), existingIntValue.ToString(), true));
           }
        }
        catch (Exception)
        {
           return null;
        }
        return null;
     }
  }

例:

[Flags]
public enum PetType
{
  None = 0, Dog = 1, Cat = 2, Fish = 4, Bird = 8, Reptile = 16, Other = 32
};

integer values 
1=Dog;
13= Dog | Fish | Bird;
96= Other;
128= Null;



21> reza.cse08..:

它可以帮助您将任何输入数据转换为用户所需的枚举.假设你有一个类似于下面的枚举,默认为int.请在枚举的第一个位置添加默认值.当找不到与输入值匹配时,在helpers方法中使用哪个.

public enum FriendType  
{
    Default,
    Audio,
    Video,
    Image
}

public static class EnumHelper
{
    public static T ConvertToEnum(dynamic value)
    {
        var result = default(T);
        var tempType = 0;

        //see Note below
        if (value != null &&
            int.TryParse(value.ToString(), out  tempType) && 
            Enum.IsDefined(typeof(T), tempType))
        {
            result = (T)Enum.ToObject(typeof(T), tempType); 
        }
        return result;
    }
}

注意:这里我尝试将值解析为int,因为枚举是默认的int 如果你定义这样的枚举是字节类型.

public enum MediaType : byte
{
    Default,
    Audio,
    Video,
    Image
} 

您需要更改辅助方法的解析

int.TryParse(value.ToString(), out  tempType)

byte.TryParse(value.ToString(), out tempType)

我检查我的方法是否有输入

EnumHelper.ConvertToEnum(null);
EnumHelper.ConvertToEnum("");
EnumHelper.ConvertToEnum("-1");
EnumHelper.ConvertToEnum("6");
EnumHelper.ConvertToEnum("");
EnumHelper.ConvertToEnum("2");
EnumHelper.ConvertToEnum(-1);
EnumHelper.ConvertToEnum(0);
EnumHelper.ConvertToEnum(1);
EnumHelper.ConvertToEnum(9);

对不起我的英语不好



22> Chad Hedgcoc..:

这是强制转换Int32为的扩展方法Enum

即使值大于最大可能值,它也支持按位标志。例如,如果你有可能性的枚举12,和4,但int是9,它理解为1在不存在的8。这使您可以在代码更新之前进行数据更新。

   public static TEnum ToEnum(this int val) where TEnum : struct, IComparable, IFormattable, IConvertible
    {
        if (!typeof(TEnum).IsEnum)
        {
            return default(TEnum);
        }

        if (Enum.IsDefined(typeof(TEnum), val))
        {//if a straightforward single value, return that
            return (TEnum)Enum.ToObject(typeof(TEnum), val);
        }

        var candidates = Enum
            .GetValues(typeof(TEnum))
            .Cast()
            .ToList();

        var isBitwise = candidates
            .Select((n, i) => {
                if (i < 2) return n == 0 || n == 1;
                return n / 2 == candidates[i - 1];
            })
            .All(y => y);

        var maxPossible = candidates.Sum();

        if (
            Enum.TryParse(val.ToString(), out TEnum asEnum)
            && (val <= maxPossible || !isBitwise)
        ){//if it can be parsed as a bitwise enum with multiple flags,
          //or is not bitwise, return the result of TryParse
            return asEnum;
        }

        //If the value is higher than all possible combinations,
        //remove the high imaginary values not accounted for in the enum
        var excess = Enumerable
            .Range(0, 32)
            .Select(n => (int)Math.Pow(2, n))
            .Where(n => n <= val && n > 0 && !candidates.Contains(n))
            .Sum();

        return Enum.TryParse((val - excess).ToString(), out asEnum) ? asEnum : default(TEnum);
    }

推荐阅读
wangtao
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有