foreach (PropertyInfo propertyInfo in base.GetType().GetProperties())
{ if (propertyInfo.CanWrite) { propertyInfo.SetValue(this, tag, null); } }本文共 192 字,大约阅读时间需要 1 分钟。
foreach (PropertyInfo propertyInfo in base.GetType().GetProperties())
{ if (propertyInfo.CanWrite) { propertyInfo.SetValue(this, tag, null); } }转载于:https://www.cnblogs.com/atuo/p/8963046.html