标签:for 同名 property this obj null inf info value
//将saddle中每一个属性赋值给到WebPlate中的同名属性
foreach (PropertyInfo info in saddle.GetType().GetProperties())
{
try
{
string objString = info.Name;
object objValue = saddle.GetType().GetProperty(objString).GetValue(saddle, null);
this.GetType().GetProperty(objString).SetValue(this, objValue, null);
}
catch
{
}
}
saddle中每一个属性赋值给到WebPlate中的同名属性
标签:for 同名 property this obj null inf info value
原文地址:http://www.cnblogs.com/swtool/p/7575511.html