如何遍历静态类常量?

时间:2016-11-12 01:39:41

标签: c# asp.net loops

有没有另一种方法可以检查foo.Type是否与Parent.Child类中的任何常量匹配,而不是使用下面代码中显示的Switch语句?

预期目标是遍历所有常量值以查看foo.Type是否匹配,而不必将每个常量指定为case

父类:

public class Parent
{
    public static class Child
    {
        public const string JOHN = "John";
        public const string MARY = "Mary";
        public const string JANE = "Jane";
    }
}

代码:

switch (foo.Type)
{
     case Parent.Child.JOHN:
     case Parent.Child.MARY:
     case Parent.Child.JANE:
         // Do Something
         break;
}

3 个答案:

答案 0 :(得分:5)

您可以在课程中找到所有常量值:

var values = typeof(Parent.Child).GetFields(BindingFlags.Static | BindingFlags.Public)
                                 .Where(x => x.IsLiteral && !x.IsInitOnly)
                                 .Select(x => x.GetValue(null)).Cast<string>();

然后你可以检查值是否包含某些内容:

if(values.Contains("something")) {/**/}

答案 1 :(得分:1)

虽然你可以循环使用反射声明的常量(如其他答案所示),但它并不理想。

将它们存储在某种可枚举的对象中会更有效:数组,List,ArrayList,最适合您的要求。

类似的东西:

public class Parent {
    public static List<string> Children = new List<string> {"John", "Mary", "Jane"}
}

然后:

if (Parent.Children.Contains(foo.Type) {
    //do something
}

答案 2 :(得分:0)

您可以使用反射来获取给定类的所有常量:

var type = typeof(Parent.Child);
FieldInfo[] fieldInfos = type.GetFields(BindingFlags.Public |
BindingFlags.Static | BindingFlags.FlattenHierarchy);

var constants = fieldInfos.Where(f => f.IsLiteral && !f.IsInitOnly).ToList();
var constValue = Console.ReadLine();
var match = constants.FirstOrDefault(c => (string)c.GetRawConstantValue().ToString() == constValue.ToString());