我有以下代码:
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
,即长度。
为什么我没有返回更多PropertyDesriptor
项?我是否正确地采用这种方式?
谢谢,Bill N
答案 0 :(得分:2)
NestedProperyExample
方法拼写错误,但不介意 - 这不是问题(:实际上,问题可能是,NestedProperyExample
方法调用TypeDescriptor.GetProperties(Object)
重载,传递一些字符串("Form1." + nestedProperties[0])
。根据文档(MSDN),它的行为非常像TypeDescriptor.GetProperties(typeof(string))
。string
只有一个简单的属性,Length
1}}, - 这就是TypeDescriptor.GetProperties
不再返回PropertyDescriptor
项的原因。
这回答了你的直接问题,但你的意图对我来说并不清楚。如果您可以重新解释您的问题,并清楚说明您尝试使用此代码完成的任务,那么您可能会得到更好的答案。