如何在 C# 中将 int 转换为枚举?

How do I cast int to enum in C#?

提问人:lomaxx 提问时间:8/27/2008 最后编辑:Mateen Ulhaqlomaxx 更新时间:4/14/2023 访问量:1999669

问:

如何在 C# 中将 an 转换为 an?intenum

C# 枚举强制 转换 整数

评论


答:

4642赞 FlySwat 8/27/2008 #1

从 int:

YourEnum foo = (YourEnum)yourInt;

从字符串:

YourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString);

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

从数字:

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

评论

42赞 Shimmy Weitzhandler 2/19/2012
@FlySwat,如果是动态的并且仅在运行时知道,我想要的是转换为?YourEnumEnum
278赞 jropella 4/27/2013
请注意,如果您的代码被混淆,Enum.Parse 将不起作用。在混淆后的运行时,字符串将与枚举名称进行比较,此时枚举的名称不是您期望的名称。因此,您的解析将在之前成功的地方失败。
191赞 JoeCool 6/25/2013
小心如果您使用上面的“from a string”语法并传入一个无效的数字字符串(例如“2342342”——假设这不是您的枚举的值),它实际上会允许这样做而不会引发错误!您的枚举将具有该值 (2342342),即使它不是枚举本身的有效选择。
168赞 Justin T Conroy 11/27/2013
我认为这个答案现在有点过时了。对于字符串,您现在应该真正使用(并检查结果以确定转换是否失败)。var result = Enum.TryParse(yourString, out yourEnum)
27赞 Erik Schierboom 2/5/2014
也可以通过向调用添加参数值来区分大小写:Enum.ParsetrueYourEnum foo = (YourEnum) Enum.Parse(typeof(YourEnum), yourString, true);
143赞 abigblackman 8/27/2008 #2

以以下示例为例:

int one = 1;
MyEnum e = (MyEnum)one;
1151赞 Matt Hamilton 8/27/2008 #3

只需投射它:

MyEnum e = (MyEnum)3;

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

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

评论

243赞 dtroy 7/31/2009
请注意,如果使用 Flags 属性,并且值是标志的组合,则不能使用 Enum.IsDefined,例如:Keys.L |按键控制
26赞 adrian 12/4/2013
关于,请注意它可能很危险:msdn.microsoft.com/en-us/library/ms229025(VS.90).aspxEnum.IsDefined
4赞 Pap 8/19/2014
我更喜欢这个定义:“返回一个指示是否在指定的枚举中存在具有指定值的常量”,来自 MSDN
5赞 Pap 8/19/2014
...因为你的定义可能具有误导性,因为你在说:“......检查它是否在范围内......“这意味着在具有开始和结束限制的数字范围内...
4赞 adrian 11/13/2018
@mac9416我试图在 gist.github.com/alowdon/f7354cda97bac70b44e1c04bc0991bcc 给出一个简洁的例子 - 基本上通过使用检查输入值,你让自己容易受到人们稍后添加新枚举值的影响,这些值会通过检查(因为新值存在于新代码中),但这可能不适用于你编写的原始代码。因此,显式指定代码能够处理的枚举值会更安全。IsDefinedIsDefined
55赞 L. D. 7/2/2010 #4

有时,你有一个对象到类型。喜欢MyEnum

var MyEnumType = typeof(MyEnum);

然后:

Enum.ToObject(typeof(MyEnum), 3)
68赞 Tawani 9/7/2010 #5

下面是一个不错的枚举实用程序类

public static class EnumHelper
{
    public static int[] ToIntArray<T>(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<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;
    }


    internal static 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;
    }
}
47赞 Evan M 4/14/2011 #6

如果有一个充当位掩码的整数,并且可以表示 [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);
    }
}

请注意,这假定 的基础类型是有符号的 32 位整数。如果它是不同的数值类型,则必须更改硬编码的 32 以反映该类型中的位(或使用编程方式派生它enumEnum.GetUnderlyingType())

77赞 MSkuta 10/21/2011 #7

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

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

我认为这是最好的解决方案。

评论

1赞 orion elenzil 11/20/2015
这很好。令我惊讶的是,在将无效值转换为 int 支持的枚举时没有例外。
0赞 Don Cheadle 12/21/2017
这实际上与最受好评的答案没有太大区别。该答案还讨论了在将字符串强制转换为 Enum 类型后使用 Enum.IsDefined。因此,即使字符串被强制转换而没有错误,Enum.IsDefined 仍会捕获它
56赞 Ryan Russon 11/1/2011 #8

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

评论

24赞 CodesInChaos 11/1/2011
这在从字符串转换时很有用。但在从 int 转换时则不然。
287赞 Abdul Munim 11/11/2011 #9

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

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

用法:

Color colorEnum = "Red".ToEnum<Color>();

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

评论

10赞 BrainSlugs83 6/5/2013
为了处理用户输入,调用 Enum.Parse 的重载可能是一个好主意,它允许您指定比较不区分大小写(即用户键入“red”(小写)会在不进行此更改的情况下使上述代码崩溃。
14赞 BJury 5/27/2015
很方便,但问题专门询问了 ints。
3赞 TruthOf42 10/7/2016
如果字符串是整数,例如“2”,这也有效
4赞 Justin 10/18/2016
如果 enumString 为 null,这将引发异常(昨天有类似的问题)。请考虑使用 TryParse 而不是 Parse。TryParse 还将检查 T 是否为枚举类型
1赞 Mr Anderson 5/14/2019
这种类型的扩展方法似乎是命名空间污染System.String
58赞 Sébastien Duval 2/21/2013 #10

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

public static class EnumEx
{
    static public bool TryConvert<T>(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;
    }
}

评论

0赞 Ε Г И І И О 9/11/2020
如果未定义 default(T),则返回 default(T)。这如何帮助识别未定义的?
10赞 gmail user 1/8/2014 #11

投射和投射的不同方式 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);


 }
}
25赞 Shivprasad Koirala 2/5/2014 #12

enter image description here

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

代码如下所示,其中“red”是字符串,“MyColors”是具有颜色常量的颜色枚举。

MyColors EnumColors = (MyColors)Enum.Parse(typeof(MyColors), "Red");
221赞 atlaste 4/3/2014 #13

我认为要得到一个完整的答案,人们必须知道枚举在 .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__
}

这里应该引起您的注意的是,它与枚举值分开存储。在上面的枚举中,类型为 int16。这基本上意味着你可以在一个枚举中存储任何你想要的东西,只要类型匹配value__Foovalue__

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

答案

因此,如果你有一个要映射到枚举的整数,运行时只需要做两件事:复制这 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();
}

请注意,投射到也可以!从上面的编译器角度来看,这是有道理的:该字段只是用 5 或 6 填充,当调用时,名称被解析,而名称 则不被解析。e2value__Console.WriteLineToString()e1e2

如果这不是您想要的,请使用 用于检查您要强制转换的值是否映射到定义的枚举。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();
}

评论

1赞 gravidThoughts 8/12/2016
很棒的答案,谢谢!在上一个代码示例中,它在运行时引发异常,因为 o 是一个对象。您可以将 int 变量转换为 short,只要它落在短范围内即可。
0赞 atlaste 8/12/2016
@gravidThoughts谢谢。实际上,这是一个拆箱操作,因此它不会像您描述的那样执行任何隐式转换。如果您不知道细节,在 C# 中转换有时会令人困惑......无论如何,因为 != ,它会抛出(拆箱失败)。如果这样做,它将起作用,因为这样类型将匹配。这与范围无关,而是与类型有关。intshortobject o = (short)5;
11赞 LawMan 7/2/2014 #14

就我而言,我需要从 WCF 服务返回枚举。我还需要一个友好的名字,而不仅仅是枚举。ToString() 中。

这是我的 WCF 类。

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

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

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

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

        var members = new List<EnumMember>();

        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;
    }
}

下面是从枚举中获取 Description 的 Extension 方法。

    public static string GetDescriptionValue<T>(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<YourType>();
25赞 Ted 7/17/2014 #15

稍微偏离了原来的问题,但我发现 Stack Overflow 问题的答案 Get int value from enum 很有用。创建一个具有属性的静态类,允许您轻松地将一堆相关常量收集在一起,然后在使用它们时不必将它们强制转换为它们。public const intintint

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 常量,这似乎是一个非常整洁的解决方案。

评论

5赞 Paul Richards 9/1/2014
枚举取代了这样的整数常量的使用,因为它们提供了更多的类型安全性
1赞 Ted 9/1/2014
Paul,这是一种将相关的 int 常量(例如数据库 id 常量)收集在一起的方法,因此可以直接使用它们,而不必在每次使用它们时都将它们转换为 int。它们的类型整数,而不是 DatabaseIdsEnum。
1赞 Thierry 9/11/2014
我发现至少在一种情况下,枚举类型的安全性可能会被无意中绕过。
0赞 derHugo 10/11/2019
但是枚举也确保值都是唯一的,这是这种方法所缺乏的
23赞 CZahrobsky 7/31/2014 #16

这会在 .NET 4.0 中使用泛型(如 Tawani 的实用工具类)将整数或字符串解析为具有部分匹配的目标枚举。我正在使用它来转换可能不完整的命令行开关变量。由于枚举不能为 null,因此在逻辑上应提供默认值。可以这样称呼:

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

代码如下:

using System;

public class EnumParser<T> 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<T>(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<T>(member + "", out enumVal))
                {
                    break;
                }
            }
        }
    }
}

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

18赞 Will Yu 11/21/2014 #17

从字符串:( is out of Date, useEnum.ParseEnum.TryParse)

enum Importance
{}

Importance importance;

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

评论

5赞 BJury 5/27/2015
这个问题专门问的是整数。
5赞 JeremyWeir 2/10/2016
Will Yu 请编辑您的答案,让每个人都知道 Enum.TryParse 将处理枚举的值或名称的字符串(我无法抗拒)
36赞 Daniel Fisher lennybacon 3/30/2015 #18

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

public static bool TryConvertToEnum<T>(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;
}

评论

3赞 Scott 11/10/2018
现在,C# 7.3 可以通过将 instead 限制为 代替 来改进这一点,这意味着我们不必依赖运行时检查!Enumstruct
10赞 Franki1986 1/7/2016 #19

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

  public static class Enum<T> where T : struct
  {
     private static readonly IEnumerable<T> All = Enum.GetValues(typeof (T)).Cast<T>();
     private static readonly Dictionary<int, T> 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;
11赞 reza.cse08 11/17/2016 #20

它可以帮助您将任何输入数据转换为用户所需的枚举。假设你有一个如下所示的枚举,默认情况下为 int。请在枚举的第一个添加默认值。当找不到与输入值匹配时,在帮助程序中使用它。

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

public static class EnumHelper<T>
{
    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,因为 enum 默认为 int 如果你像这样定义 enum,它是字节类型。

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

您需要将 helper 方法的解析从

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

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

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

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

对不起我的英语

24赞 Kamran Shahid 12/16/2016 #21

下面是一个稍微好一点的扩展方法:

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

评论

1赞 NDUF 1/27/2021
这实际上要好得多,因为如果 int 值不是枚举中定义的条目,则可以使用 else 语句将 enumString 设置为默认值。谢谢
13赞 Mohammad Aziz Nabizada 12/8/2018 #22

在 C# 中将 int 转换为枚举的简单明了的方法:

public class Program
{
    public enum Color : int
    {
        Blue   = 0,
        Black  = 1,
        Green  = 2,
        Gray   = 3,
        Yellow = 4
    }

    public static void Main(string[] args)
    {
        // From string
        Console.WriteLine((Color) Enum.Parse(typeof(Color), "Green"));

        // From int
        Console.WriteLine((Color)2);

        // From number you can also
        Console.WriteLine((Color)Enum.ToObject(typeof(Color), 2));
    }
}
10赞 Shivam Mishra 2/1/2019 #23

您只需使用 Explicit 转换 将 int 转换为枚举或将枚举转换为 int

class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine((int)Number.three); //Output=3

        Console.WriteLine((Number)3);// Outout three
        Console.Read();
    }

    public enum Number
    {
        Zero = 0,
        One = 1,
        Two = 2,
        three = 3
    }
}
13赞 Chad Hedgcock 2/22/2019 #24

下面是一个转换为 的扩展方法。Int32Enum

即使该值高于可能的最大值,它也会遵循按位标志。例如,如果你有一个可能为 1、24 的枚举,但 int 是 9,那么在没有 8 的情况下,它会将其理解为 1这样,您就可以在代码更新之前进行数据更新。

   public static TEnum ToEnum<TEnum>(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<int>()
            .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);
    }
15赞 user11523568 7/3/2019 #25

您应该内置一些类型匹配的放松,以使其更加可靠。

public static T ToEnum<T>(dynamic value)
{
    if (value == null)
    {
        // default value of an enum is the object that corresponds to
        // the default value of its underlying type
        // https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/default-values-table
        value = Activator.CreateInstance(Enum.GetUnderlyingType(typeof(T)));
    }
    else if (value is string name)
    {
        return (T)Enum.Parse(typeof(T), name);
    }

    return (T)Enum.ToObject(typeof(T),
             Convert.ChangeType(value, Enum.GetUnderlyingType(typeof(T))));
}

测试用例

[Flags]
public enum A : uint
{
    None  = 0, 
    X     = 1 < 0,
    Y     = 1 < 1
}

static void Main(string[] args)
{
    var value = EnumHelper.ToEnum<A>(7m);
    var x = value.HasFlag(A.X); // true
    var y = value.HasFlag(A.Y); // true

    var value2 = EnumHelper.ToEnum<A>("X");

    var value3 = EnumHelper.ToEnum<A>(null);

    Console.ReadKey();
}
8赞 Mselmi Ali 7/27/2019 #26

你只是像下面这样做:

int intToCast = 1;
TargetEnum f = (TargetEnum) intToCast ;

若要确保仅强制转换正确的值,并且否则可以引发异常,请执行以下操作:

int intToCast = 1;
if (Enum.IsDefined(typeof(TargetEnum), intToCast ))
{
    TargetEnum target = (TargetEnum)intToCast ;
}
else
{
   // Throw your exception.
}

请注意,使用 IsDefined 的成本很高,甚至不仅仅是强制转换,因此决定是否使用它取决于您的实现。

9赞 Singh Aswal 10/17/2019 #27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text.RegularExpressions;

namespace SamplePrograme
{
    public class Program
    {
        public enum Suit : int
        {
            Spades = 0,
            Hearts = 1,
            Clubs = 2,
            Diamonds = 3
        }

        public static void Main(string[] args)
        {
            //from string
            Console.WriteLine((Suit) Enum.Parse(typeof(Suit), "Clubs"));

            //from int
            Console.WriteLine((Suit)1);

            //From number you can also
            Console.WriteLine((Suit)Enum.ToObject(typeof(Suit) ,1));
        }
    }
}
8赞 Reza Jenabi 4/25/2020 #28

您可以使用扩展方法。

public static class Extensions
{

    public static T ToEnum<T>(this string data) where T : struct
    {
        if (!Enum.TryParse(data, true, out T enumVariable))
        {
            if (Enum.IsDefined(typeof(T), enumVariable))
            {
                return enumVariable;
            }
        }

        return default;
    }

    public static T ToEnum<T>(this int data) where T : struct
    {
        return (T)Enum.ToObject(typeof(T), data);
    }
}

像下面的代码一样使用它:

枚举:

public enum DaysOfWeeks
{
    Monday = 1,
    Tuesday = 2,
    Wednesday = 3,
    Thursday = 4,
    Friday = 5,
    Saturday = 6,
    Sunday = 7,
}

用法:

 string Monday = "Mon";
 int Wednesday = 3;
 var Mon = Monday.ToEnum<DaysOfWeeks>();
 var Wed = Wednesday.ToEnum<DaysOfWeeks>();
6赞 Inam Abbas 6/10/2020 #29

很简单,你可以将 int 转换为枚举

 public enum DaysOfWeeks
    {
        Monday = 1,
        Tuesday = 2,
        Wednesday = 3,
        Thursday = 4,
        Friday = 5,
        Saturday = 6,
        Sunday = 7,
    } 

    var day= (DaysOfWeeks)5;
    Console.WriteLine("Day is : {0}", day);
    Console.ReadLine();

评论

0赞 qwerty 6/19/2020
如果强制转换有效,则无法将其存储为 int。
0赞 Inam Abbas 6/23/2020
请尝试理解 int 到 Enum,我认为上面的答案对您有所帮助。
5赞 Cesar Alvarado Diaz 6/18/2020 #30

我需要两个说明:

YourEnum possibleEnum = (YourEnum)value; // There isn't any guarantee that it is part of the enum
if (Enum.IsDefined(typeof(YourEnum), possibleEnum))
{
    // Value exists in YourEnum
}
14赞 Shah Zain 9/23/2020 #31

对于字符串,您可以执行以下操作:

var result = Enum.TryParse(typeof(MyEnum), yourString, out yourEnum) 

并确保检查结果以确定转换是否失败。

对于 int,您可以执行以下操作:

MyEnum someValue = (MyEnum)myIntValue;

评论

2赞 belka 10/19/2021
例如,在字符串而不是 int 的情况下有效
0赞 Shah Zain 2/21/2022
为 int 添加了大小写。
10赞 Alexander 2/5/2021 #32

我更喜欢使用可为 null 的枚举类型变量的短方法。

var enumValue = (MyEnum?)enumInt;

if (!enumValue.HasValue)
{
    throw new ArgumentException(nameof(enumValue));
}

评论

0赞 Ed Avis 1/17/2023
我认为这是行不通的。强制转换成功,并返回非 null 值,即使整数超出范围也是如此。
0赞 Alexander 1/19/2023
现在真的行不通了。这很奇怪,因为我想我曾经使用过这种方法。难道是某个下一个版本的 .NET 破坏了此功能吗?