如何使用反射c#获取变量的类型

时间:2013-06-27 04:38:59

标签: c# reflection

我一直在寻找 - 而且我找不到有效的答案......

我只是想用反射来找出类中变量或属性的类型......

   foreach (XElement items in nodes)
                {
                    Game newGame = new Game();
                    FieldInfo[] fields = newGame.GetType().GetFields(BindingFlags.Instance |
                       BindingFlags.Static |
                       BindingFlags.NonPublic |
                       BindingFlags.Public);

                    foreach(XAttribute item in items.Attributes())
                    {
                        foreach (FieldInfo f in fields)
                        {

                            if (f.Name.Remove(0,1) == item.Name.LocalName)
                            {

                                if (GetTypeOrUnderlyingType(f) == typeof(Int32))
                                {
                                    Type type = typeof(Int32).DeclaringType;
                                    f.SetValue(newGame, Convert.ChangeType(item.Value, type));
                                }
                            }
                        }
                    }
                }

 public Type GetTypeOrUnderlyingType(object o)
        {
            Type type = o.GetType();
            if (!type.IsGenericType) { return type; }
            return type.GetGenericArguments()[0];
        }

游戏是通过linq生成的一个类... 我只是想得到该字段的类型,所以我知道我是否需要转换我的xml item.value ....

1 个答案:

答案 0 :(得分:2)

要获取字段的属性值,请使用FieldInfo类FieldType属性

foreach (FieldInfo fieldInfo in typeof(A).GetFields(BindingFlags.Instance |
                               BindingFlags.Static |
                               BindingFlags.NonPublic |
                               BindingFlags.Public))
                {
                    Console.WriteLine(fieldInfo.FieldType.Name);
                }