c#反射GetType().GetProperties()为什么取不到值?
做了一个方法,传入某对象,如果是string类型则后面加个“1”加断点propertys的值是{System.Reflection.PropertyInfo[0]}进不到...
做了一个方法,传入某对象,如果是string类型则后面加个“1”
加断点propertys的值是{System.Reflection.PropertyInfo[0]}
进不到 foreach循环里,请高手看看这是怎么回事啊?
调用代码是:bm = getObject<BM>(bm);
public T getObject<T>(T t)
{
string temp = "";
System.Reflection.PropertyInfo[] propertys = t.GetType().GetProperties();
foreach (System.Reflection.PropertyInfo p in propertys)
{
if (p.PropertyType == typeof(string))
{
temp = p.GetValue(t, null).ToString();
p.SetValue(t, temp+"1", null);
}
}
return t;
} 展开
加断点propertys的值是{System.Reflection.PropertyInfo[0]}
进不到 foreach循环里,请高手看看这是怎么回事啊?
调用代码是:bm = getObject<BM>(bm);
public T getObject<T>(T t)
{
string temp = "";
System.Reflection.PropertyInfo[] propertys = t.GetType().GetProperties();
foreach (System.Reflection.PropertyInfo p in propertys)
{
if (p.PropertyType == typeof(string))
{
temp = p.GetValue(t, null).ToString();
p.SetValue(t, temp+"1", null);
}
}
return t;
} 展开
3个回答
展开全部
我测试是通过的,怀疑你是否定义了属性?
static void Main(string[] args)
{
C c = new C();
c.S = "SS";
C c1 = getObject<C>(c);
Console.WriteLine(c1.S);//SS1
Console.ReadLine();
}
class C
{
public string S { get; set; }//属性
}
static T getObject<T>(T t)
{
string temp = "";
System.Reflection.PropertyInfo[] propertys = t.GetType().GetProperties();
foreach (System.Reflection.PropertyInfo p in propertys)
{
if (p.PropertyType == typeof(string))
{
temp = p.GetValue(t, null).ToString();
p.SetValue(t, temp + "1", null);
}
}
return t;
}
展开全部
我最近一致在做json和object互转,并且下了litjson的源代码,调试跟踪代码,并且看了
GetType().GetProperties()这个API的解释,只能获取到public的属性,private的属性是无法获取到的,有空你可以测试看下是否能获取到其他权限属性修饰下的属性是否能够获取
GetType().GetProperties()这个API的解释,只能获取到public的属性,private的属性是无法获取到的,有空你可以测试看下是否能获取到其他权限属性修饰下的属性是否能够获取
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2015-04-01
展开全部
GetType().GetProperties()是获取属性,不是获取方法的吧。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询