我想创建一个静态类,它将从XML文件加载一些设置,并将这些设置应用到它自己的属性。
我正在尝试使用以下代码,但我真的不知道要为SetValue方法提供什么,因为我们要为其设置属性的类是静态的。
// some code removed ...
Type settingsType = typeof(Settings); // Settings is a static class
foreach (PropertyInfo propertyInformation in settingsType.GetProperties(BindingFlags.Public |
BindingFlags.Static))
{
//------------------------------------------------------------
// Determine if configured setting matches current setting based on name
//------------------------------------------------------------
if (propertyInformation.Name.Equals(name, StringComparison.OrdinalIgnoreCase))
{
//------------------------------------------------------------
// Attempt to apply configured setting
//------------------------------------------------------------
try
{
if (propertyInformation.CanWrite)
{
propertyInformation.SetValue(this, Convert.ChangeType(value, propertyInformation.PropertyType, CultureInfo.CurrentCulture), null);
}
}
catch
{
}
break;
}
}
是否可以使用反射在静态类上设置属性?
答案 0 :(得分:33)
只需为实例传递null
。