对于我正在研究的应用程序,我试图显示一个模板,该模板将显示(运行时确定的)方法的参数。我正在处理的测试用例应显示" PERSON =(FIRST = first; LAST = last);",其中名为Person的参数具有Name类型,Name具有两个属性,First和持续。以下代码显示" PERSON =();"。
GetNestedTypes没有返回任何内容,任何想法为什么?
public static string GetParameterTemplate(MethodInfo method)
{
StringBuilder output = new StringBuilder();
foreach (ParameterInfo pi in method.GetParameters())
{
output.Append(parameterTemplateHelper(pi.Name, pi.ParameterType));
}
return output.ToString();
}
private static string parameterTemplateHelper(string pName, Type pType)
{
string key = pName.ToUpper();
string value = "";
if (pType.IsPrimitive)
{
// it's a primitive
value = pName.ToLower();
}
else if (pType.IsArray)
{
if (pType.GetElementType().IsPrimitive)
{
// array of primitives
value = String.Format("{0}1, {0}2;", pName.ToLower());
}
else
{
// array of objects
StringBuilder sb = new StringBuilder();
foreach (Type t in pType.GetElementType().GetNestedTypes(BindingFlags.Public | BindingFlags.NonPublic))
{
sb.Append(parameterTemplateHelper(t.Name, t));
}
value = String.Format("({0}), ({0});", sb);
}
}
else
{
// object
StringBuilder sb = new StringBuilder();
Type[] junk = pType.GetNestedTypes(BindingFlags.Public | BindingFlags.NonPublic);
foreach (Type t in pType.GetNestedTypes())
{
sb.Append(parameterTemplateHelper(t.Name, t));
}
value = String.Format("({0});", sb.ToString());
}
string output = key + " = " + value.ToString();
return output;
}
答案 0 :(得分:2)
您的代码正在寻找嵌套类型 - 即Person
内声明的其他类型。这与在Person
中寻找属性完全不同。
这是一个嵌套类型的类:
public class Name
{
public class Nested1 {}
public class Nested2 {}
}
这是一个包含属性的类:
public class Name
{
public string Name { get; set; }
public string Name { get; set; }
}
我的猜测是你的情况更像是第二个而不是第一个......所以请使用Type.GetProperties
代替Type.GetNestedTypes
。