gpt4 book ai didi

c# - 将对象转换为 NameValueCollection

转载 作者:行者123 更新时间:2023-11-30 18:39:24 25 4
gpt4 key购买 nike

我必须将通用对象转换为 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;
}

我假设必须有某种递归调用,但不知道如何去做。感谢您的帮助。

最佳答案

我假设当输入的类型为 第二类

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

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com