如何在c#中枚举一个
例如:下列程式码无法编译:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | public enum Suit { Spades, Hearts, Clubs, Diamonds } public void EnumerateAllSuitsDemoMethod() { foreach (Suit suit in Suit) { DoSomething(suit); } } |
并给出以下编译时错误:
'Suit' is a 'type' but is used like a 'variable'
它在
1 2 3 |
注意:强制转换到
在我看来,您确实想打印出每个枚举的名称,而不是值。在这种情况下,
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public enum Suits { Spades, Hearts, Clubs, Diamonds, NumSuits } public void PrintAllSuits() { foreach (string name in Enum.GetNames(typeof(Suits))) { System.Console.WriteLine(name); } } |
顺便说一下,递增值并不是枚举枚举枚举枚举值的好方法。你应该这样做。
我将使用
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public enum Suits { Spades, Hearts, Clubs, Diamonds, NumSuits } public void PrintAllSuits() { foreach (var suit in Enum.GetValues(typeof(Suits))) { System.Console.WriteLine(suit.ToString()); } } |
我做了一些简单的扩展枚举使用,也许有人可以使用它…
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | public static class EnumExtensions { /// <summary> /// Gets all items for an enum value. /// </summary> /// <typeparam name="T"></typeparam> /// <param name="value">The value.</param> /// <returns></returns> public static IEnumerable<T> GetAllItems<T>(this Enum value) { foreach (object item in Enum.GetValues(typeof(T))) { yield return (T)item; } } /// <summary> /// Gets all items for an enum type. /// </summary> /// <typeparam name="T"></typeparam> /// <param name="value">The value.</param> /// <returns></returns> public static IEnumerable<T> GetAllItems<T>() where T : struct { foreach (object item in Enum.GetValues(typeof(T))) { yield return (T)item; } } /// <summary> /// Gets all combined items from an enum value. /// </summary> /// <typeparam name="T"></typeparam> /// <param name="value">The value.</param> /// <returns></returns> /// <example> /// Displays ValueA and ValueB. /// <wyn> /// EnumExample dummy = EnumExample.Combi; /// foreach (var item in dummy.GetAllSelectedItems<EnumExample>()) /// { /// Console.WriteLine(item); /// } /// </wyn> /// </example> public static IEnumerable<T> GetAllSelectedItems<T>(this Enum value) { int valueAsInt = Convert.ToInt32(value, CultureInfo.InvariantCulture); foreach (object item in Enum.GetValues(typeof(T))) { int itemAsInt = Convert.ToInt32(item, CultureInfo.InvariantCulture); if (itemAsInt == (valueAsInt & itemAsInt)) { yield return (T)item; } } } /// <summary> /// Determines whether the enum value contains a specific value. /// </summary> /// <param name="value">The value.</param> /// <param name="request">The request.</param> /// <returns> /// <c>true</c> if value contains the specified value; otherwise, <c>false</c>. /// </returns> /// <example> /// <wyn> /// EnumExample dummy = EnumExample.Combi; /// if (dummy.Contains<EnumExample>(EnumExample.ValueA)) /// { /// Console.WriteLine("dummy contains EnumExample.ValueA"); /// } /// </wyn> /// </example> public static bool Contains<T>(this Enum value, T request) { int valueAsInt = Convert.ToInt32(value, CultureInfo.InvariantCulture); int requestAsInt = Convert.ToInt32(request, CultureInfo.InvariantCulture); if (requestAsInt == (valueAsInt & requestAsInt)) { return true; } return false; } } |
枚举本身必须装饰国旗贡品
1 2 3 4 5 6 7 8 9 | [Flags] public enum EnumExample { ValueA = 1, ValueB = 2, ValueC = 4, ValueD = 8, Combi = ValueA | ValueB } |
. net框架的一些版本不支持
1 2 3 4 5 6 7 8 9 10 | public Enum[] GetValues(Enum enumeration) { FieldInfo[] fields = enumeration.GetType().GetFields(BindingFlags.Static | BindingFlags.Public); Enum[] enumerations = new Enum[fields.Length]; for (var i = 0; i < fields.Length; i++) enumerations[i] = (Enum) fields[i].GetValue(enumeration); return enumerations; } |
与任何涉及反射的代码一样,您应该采取步骤确保只运行一次并缓存结果。
为什么没有人使用
1 |
好了
我认为这比其他建议更有效,因为
1 2 3 | EnumLoop<Suit>.ForEach((suit) => { DoSomethingWith(suit); }); |
1 2 3 4 5 6 7 8 | class EnumLoop<Key> where Key : struct, IConvertible { static readonly Key[] arr = (Key[])Enum.GetValues(typeof(Key)); static internal void ForEach(Action<Key> act) { for (int i = 0; i < arr.Length; i++) { act(arr[i]); } } } |
你不会在Silverlight中得到yanan5。
Einar Ingebrigtsen原创博客:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | public class EnumHelper { public static T[] GetValues<T>() { Type enumType = typeof(T); if (!enumType.IsEnum) { throw new ArgumentException("Type '" + enumType.Name +"' is not an enum"); } List<T> values = new List<T>(); var fields = from field in enumType.GetFields() where field.IsLiteral select field; foreach (FieldInfo field in fields) { object value = field.GetValue(enumType); values.Add((T)value); } return values.ToArray(); } public static object[] GetValues(Type enumType) { if (!enumType.IsEnum) { throw new ArgumentException("Type '" + enumType.Name +"' is not an enum"); } List<object> values = new List<object>(); var fields = from field in enumType.GetFields() where field.IsLiteral select field; foreach (FieldInfo field in fields) { object value = field.GetValue(enumType); values.Add(value); } return values.ToArray(); } } |
添加我的解决方案,它在紧凑的框架(3.5)中工作,并支持编译时的类型检查:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public static List<T> GetEnumValues<T>() where T : new() { T valueType = new T(); return typeof(T).GetFields() .Select(fieldInfo => (T)fieldInfo.GetValue(valueType)) .Distinct() .ToList(); } public static List<String> GetEnumNames<T>() { return typeof (T).GetFields() .Select(info => info.Name) .Distinct() .ToList(); } |
-如果有人知道如何摆脱
一个电话应该是这样的:
1 | List<MyEnum> result = Utils.GetEnumValues<MyEnum>(); |
我想你可以用
1 | Enum.GetNames(Suit) |
1 2 3 4 5 6 7 | public void PrintAllSuits() { foreach(string suit in Enum.GetNames(typeof(Suits))) { Console.WriteLine(suit); } } |
1I've heard vague rumours that this is
terifically slow. Anyone know? – Orion
Edwards Oct 15 '08 at 1:31 7
我认为缓存数组会大大加快它的速度。看起来每次都得到一个新的数组(通过反射)。而:
1 2 3 4 5 | Array enums = Enum.GetValues(typeof(Suit)); foreach (Suit suitEnum in enums) { DoSomething(suitEnum); } |
这样至少快了一点,对吧?
三种方式:
1 2 3 | 1. Enum.GetValues(type) //since .NET 1.1, not in silverlight or compact framewok 2. type.GetEnumValues() //only on .NET 4 and above 3. type.GetFields().Where(x => x.IsLiteral).Select(x => x.GetValue(null)) //works everywhere |
不知道为什么在type instance上引入了
拥有像
1 2 3 4 5 6 7 8 9 10 11 12 |
现在你叫:
1 2 3 |
如果性能很重要,也可以使用缓存,但我不认为这是一个问题
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | public static class Enum<T> where T : struct, IComparable, IFormattable, IConvertible { //lazily loaded static T[] values; static string[] names; public static IEnumerable<T> GetValues() { return values ?? (values = (T[])Enum.GetValues(typeof(T))); } public static IEnumerable<string> GetNames() { return names ?? (names = Enum.GetNames(typeof(T))); } } |
我要把我的两个便士扔进什么鬼东西,只要把我得到的最上面的答案组合在一起,就能得到一个非常简单的扩展名
1 2 3 4 5 6 7 8 9 10 11 12 13 | public static class EnumExtensions { /// <summary> /// Gets all items for an enum value. /// </summary> /// <typeparam name="T"></typeparam> /// <param name="value">The value.</param> /// <returns></returns> public static IEnumerable<T> GetAllItems<T>(this T value) where T : Enum { return (T[])Enum.GetValues(typeof (T)); } } |
Clean simple和by @Jeppe-Stig-Nielsen的评论很快。
有两种方法来迭代一个
第一个将以
在
1 2 3 4 | foreach(var value in values) { //Do operations here } |
然后使用ToString()在标记中分割和解析这个唾液数组。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | [Flags] public enum ABC { a = 1, b = 2, c = 4 }; public IEnumerable<ABC> Getselected (ABC flags) { var values = flags.ToString().Split(','); var enums = values.Select(x => (ABC)Enum.Parse(typeof(ABC), x.Trim())); return enums; } ABC temp= ABC.a | ABC.b; var list = getSelected (temp); foreach (var item in list) { Console.WriteLine(item.ToString() +" ID=" + (int)item); } |
我不认为这是更好的,甚至好,只是说明了另一个解决方案
如果enum值严格从0到n - 1,一个通用的替代方法:
1 2 3 4 5 6 7 8 | public void EnumerateEnum<T>() { int length = Enum.GetValues(typeof(T)).Length; for (var i = 0; i < length; i++) { var @enum = (T)(object)i; } } |
如果枚举值是连续的,并且可以提供枚举的第一个和最后一个元素,则:
1 2 3 4 5 6 7 | public void EnumerateEnum() { for (var i = Suit.Spade; i <= Suit.Diamond; i++) { var @enum = i; } } |
但这不是严格的枚举,只是循环。第二种方法比任何其他方法都要快……
如果你需要在构建和运行时检查速度和类型,这个帮助器方法比使用LINQ来转换每个元素更好:
1 2 3 4 5 6 7 8 |
你可以这样使用它:
1 | static readonly YourEnum[] _values = GetEnumValues<YourEnum>(); |
当然您可以返回
下面是一个为DDL创建select选项的工作示例
1 2 3 4 5 6 7 8 9 |
1 2 3 |
(目前公认的答案有一个演员阵容,我不这么认为是必要的(尽管我可能错了)。
这个问题出现在"c# Step by Step 2013"的第10章。
作者使用双for循环遍历一对枚举数(创建一副完整的牌):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | class Pack { public const int NumSuits = 4; public const int CardsPerSuit = 13; private PlayingCard[,] cardPack; public Pack() { this.cardPack = new PlayingCard[NumSuits, CardsPerSuit]; for (Suit suit = Suit.Clubs; suit <= Suit.Spades; suit++) { for (Value value = Value.Two; value <= Value.Ace; value++) { cardPack[(int)suit, (int)value] = new PlayingCard(suit, value); } } } } |
在这种情况下,
1 2 | enum Suit { Clubs, Diamonds, Hearts, Spades } enum Value { Two, Three, Four, Five, Six, Seven, Eight, Nine, Ten, Jack, Queen, King, Ace} |
而
1 2 3 4 5 6 7 8 9 10 11 | class PlayingCard { private readonly Suit suit; private readonly Value value; public PlayingCard(Suit s, Value v) { this.suit = s; this.value = v; } } |
我知道这有点乱,但如果你喜欢俏皮话,这里有一个:
1 |
一个简单和通用的方法转换enum的东西,你可以互动:
1 2 3 4 5 6 7 8 | public static Dictionary<int, string> ToList<T>() where T : struct { return ((IEnumerable<T>)Enum .GetValues(typeof(T))) .ToDictionary( item => Convert.ToInt32(item), item => item.ToString()); } |
然后:
1 | var enums = EnumHelper.ToList<MyEnum>(); |
如果您知道类型是
1 2 3 4 5 6 7 8 9 10 11 12 13 | public class EnumHelper { public static IEnumerable<T> GetValues<T>() { return Enum.GetValues(typeof(T)).Cast<T>(); } public static IEnumerable getListOfEnum(Type type) { MethodInfo getValuesMethod = typeof(EnumHelper).GetMethod("GetValues").MakeGenericMethod(type); return (IEnumerable)getValuesMethod.Invoke(null, null); } } |
方法
用法:
1 2 3 4 5 6 7 8 | Type myType = someEnumValue.GetType(); IEnumerable resultEnumerable = getListOfEnum(myType); foreach (var item in resultEnumerable) { Console.WriteLine(String.Format("Item: {0} Value: {1}",item.ToString(),(int)item)); } |
向类中添加方法
1 2 3 4 |
调用并传递枚举,现在可以使用
1 2 3 4 5 6 7 8 9 | public static void EnumerateAllSuitsDemoMethod() { // custom method var foos = GetValues<Suit>(); foreach (var foo in foos) { // Do something } } |
(实际上,这要复杂一点——枚举类型被认为具有"底层"整数类型,这意味着每个枚举值对应一个整数值(这通常是隐式的,但可以手动指定)。c#的设计方式是这样的:您可以将这种类型的任何整数填充到enum变量中,即使它不是一个"已命名"值。)
System.Enum。GetNames方法可用于检索字符串数组,这些字符串是枚举值的名称,顾名思义。
编辑:应该建议系统。enum。getvalue方法相反。哦。
你也可以使用反射直接绑定到enum的公共静态成员:
1 2 | typeof(Suit).GetMembers(BindingFlags.Public | BindingFlags.Static) .ToList().ForEach(x => DoSomething(x.Name)); |