saddle中每一个属性赋值给到WebPlate中的同名属性
Posted swtool
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了saddle中每一个属性赋值给到WebPlate中的同名属性相关的知识,希望对你有一定的参考价值。
//将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中的同名属性的主要内容,如果未能解决你的问题,请参考以下文章