2

对于我正在开发的应用程序,我正在尝试显示一个模板,该模板将显示(运行时确定的)方法的参数是什么样的。我正在处理的测试用例应该显示“PERSON = (FIRST = first; LAST = last);”,其中名为 Person 的参数具有 Name 类型,Name 有两个属性,First 和 Last。以下代码改为显示“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;
}
4

1 回答 1

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.

于 2012-04-30T13:51:15.447 回答