我必须将通用对象转换为NameValueCollection。我正在尝试使用反射。虽然可以获取父属性,但无法获取作为对象的父属性的属性。

Class One
public string name{get;set}

Class Two
public string desc{get;set}
public One OneName{get;set;}

public static NameValueCollection GetPropertyName(
        string objType, object objectItem)
{
    Type type = Type.GetType(objType);
    PropertyInfo[] propertyInfos = type.GetProperties();
    NameValueCollection propNames = new NameValueCollection();

    foreach (PropertyInfo propertyInfo in objectItem.GetType().GetProperties())
    {
        if (propertyInfo.CanRead)
        {
            var pName = propertyInfo.Name;
            var pValue = propertyInfo.GetValue(objectItem, null);
            if (pValue != null)
            {
                propNames.Add(pName, pValue.ToString());
            }
        }
    }

    return propNames;
}


我认为必须进行某种递归调用,但是无法弄清楚该怎么做。任何帮助表示赞赏。

最佳答案

我将假设您希望当输入的类型为NameValueCollection时,结果Class One包含来自Class TwoClass Two的属性。

现在我们已经建立了,您可以做的是检查每个属性的类型。
如果它是内置类型之一(Type.IsPrimitive()可以帮助您确定),则可以立即将属性添加到生成的NameValueCollection中。否则,您需要遍历该非原始类型的每个属性,然后再次重复该过程。如您所述,这里是递归的地方。

关于c# - 将对象转换为NameValueCollection,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9914944/

10-12 17:04