91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

PropertyInfo如何實現深層屬性訪問

小樊
82
2024-07-08 17:02:20
欄目: 深度學習

在C#中,可以使用PropertyInfo類實現深層屬性訪問。首先,獲取對象的類型信息,然后使用GetProperty方法獲取指定屬性的PropertyInfo對象,再遞歸地獲取嵌套屬性的PropertyInfo對象,直到達到需要訪問的深層屬性。

以下是一個示例代碼,演示如何使用PropertyInfo實現深層屬性訪問:

using System;
using System.Reflection;

public class Person
{
    public string Name { get; set; }
    public Address Address { get; set; }
}

public class Address
{
    public string Street { get; set; }
    public string City { get; set; }
}

class Program
{
    static void Main()
    {
        Person person = new Person
        {
            Name = "John Doe",
            Address = new Address
            {
                Street = "123 Main St",
                City = "City"
            }
        };

        PropertyInfo propertyInfo = GetDeepPropertyInfo(person, "Address.City");
        if (propertyInfo != null)
        {
            object propertyValue = GetDeepPropertyValue(person, "Address.City");
            Console.WriteLine(propertyInfo.Name + ": " + propertyValue);
        }
    }

    static PropertyInfo GetDeepPropertyInfo(object obj, string propertyName)
    {
        Type type = obj.GetType();
        string[] propertyNames = propertyName.Split('.');

        PropertyInfo propertyInfo = null;
        foreach (string name in propertyNames)
        {
            propertyInfo = type.GetProperty(name);
            if (propertyInfo != null)
            {
                type = propertyInfo.PropertyType;
            }
            else
            {
                return null;
            }
        }

        return propertyInfo;
    }

    static object GetDeepPropertyValue(object obj, string propertyName)
    {
        Type type = obj.GetType();
        string[] propertyNames = propertyName.Split('.');

        object propertyValue = null;
        foreach (string name in propertyNames)
        {
            PropertyInfo propertyInfo = type.GetProperty(name);
            if (propertyInfo != null)
            {
                propertyValue = propertyInfo.GetValue(obj);
                obj = propertyValue;
                type = propertyInfo.PropertyType;
            }
            else
            {
                return null;
            }
        }

        return propertyValue;
    }
}

在上面的示例中,GetDeepPropertyInfo和GetDeepPropertyValue方法分別用于獲取深層屬性的PropertyInfo對象和屬性值。通過使用這兩個方法,可以實現對任意深層屬性的訪問。

0
夏河县| 高淳县| 金寨县| 永昌县| 沅陵县| 彭水| 洞口县| 壤塘县| 齐齐哈尔市| 婺源县| 隆子县| 平顶山市| 赣州市| 页游| 连江县| 宽甸| 五华县| 新乐市| 甘肃省| 阳谷县| 唐山市| 江西省| 金秀| 寿宁县| 贺兰县| 抚顺县| 临沂市| 衡南县| 海淀区| 金坛市| 寻乌县| 绥宁县| 永新县| 秦安县| 大竹县| 老河口市| 安新县| 教育| 鹤岗市| 兖州市| 铁力市|