正在检索嵌套对象的PropertyDescriptor
本文关键字:PropertyDescriptor 对象 嵌套 检索 | 更新日期: 2023-09-27 18:22:08
我有以下代码:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
object o;
Person p = new Person { FirstName = "John", Surname = "Henry" };
Citizen c = new Citizen { Country = "Canada", ResidentName = p };
SportsFan sf = new SportsFan { Sport = "Hockey", Fan = c };
Discoverer<SportsFan>.SimpleExample("Sport", "Hockey",out o);
Discoverer<SportsFan>.NestedProperyExample("Fan.Citizen.FirstName", "John",out o);
}
private class Person
{
public string FirstName
{
get; set;
}
public string Surname
{
get; set;
}
}
private class Citizen
{
public Person ResidentName
{
get; set;
}
public string Country
{
get; set;
}
}
private class SportsFan
{
public string Sport
{
get; set;
}
public Citizen Fan
{
get; set;
}
}
private class Discoverer<T>
{
public static void SimpleExample(string propName, string objResultToString,out Object obj)
{
PropertyDescriptor propDesc;
propDesc = TypeDescriptor.GetProperties(typeof(T))[propName];
TypeConverter converter = TypeDescriptor.GetConverter(propDesc.PropertyType);
obj = converter.ConvertFromString(objResultToString);
}
public static void NestedProperyExample(string propName, string objResultToString, out Object obj)
{
PropertyDescriptor propDesc = null;
obj = null;
string[] nestedProperties = propName.Split(new char[] { '.' }, StringSplitOptions.RemoveEmptyEntries);
propDesc = TypeDescriptor.GetProperties("Form1." + nestedProperties[0])[nestedProperties[1]];
for (int i = 1; i < nestedProperties.Length - 1; i++)
{
if (propDesc != null)
propDesc = TypeDescriptor.GetProperties(propDesc.GetType())[nestedProperties[i + 1]];
}
if (propDesc != null)
{
TypeConverter converter = TypeDescriptor.GetConverter(propDesc.PropertyType);
obj = converter.ConvertFromString(objResultToString);
}
}
}
}
该代码适用于simpleExample
。在NestedPropertyExample
上,对PropDesc
的第一次分配返回null
。当我检查TypeDescriptor.GetProperties("Form1." + nestedProperties[0])
时,它会返回一个项目的PropertyDescriptorCollection
,即Length。
为什么我不退回更多PropertyDesriptor
项目?我这样做正确吗?
谢谢,Bill N
NestedProperyExample
方法有点拼写错误,但不要介意——这不是问题所在(:实际上,问题可能是NestedProperyExample
方法调用TypeDescriptor.GetProperties(Object)
重载,并向其传递一些字符串("Form1." + nestedProperties[0])
。根据docs(MSDN),它的行为非常像TypeDescriptor.GetProperties(typeof(string))
。string
只有一个简单的属性,它的Length
,这就是为什么TypeDescriptor.GetProperties
不再返回任何PropertyDescriptor
项。
这回答了你的直接问题,但我不清楚你的意图。也许如果你能重新表述你的问题,并明确说明你试图用这个代码完成什么,你可能会得到更好的答案。