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

溫馨提示×

c#如何獲取object的屬性值

小億
423
2024-05-11 14:47:46
欄目: 編程語言

在C#中,您可以使用反射來獲取一個對象的屬性值。以下是一個示例代碼,演示如何獲取一個對象的屬性值:

using System;
using System.Reflection;

public class Person
{
    public string Name { get; set; }
    public int Age { get; set; }
}

class Program
{
    static void Main()
    {
        Person person = new Person
        {
            Name = "John",
            Age = 30
        };

        Type type = person.GetType();
        PropertyInfo nameProperty = type.GetProperty("Name");
        PropertyInfo ageProperty = type.GetProperty("Age");

        string nameValue = (string)nameProperty.GetValue(person);
        int ageValue = (int)ageProperty.GetValue(person);

        Console.WriteLine("Name: " + nameValue);
        Console.WriteLine("Age: " + ageValue);
    }
}

在上面的示例中,我們首先使用反射獲取對象的類型,然后使用GetProperty方法獲取對象的屬性。最后,使用GetValue方法獲取屬性的值。

0
子洲县| 丽水市| 永修县| 樟树市| 万安县| 昌图县| 阿鲁科尔沁旗| 乌兰浩特市| 娱乐| 龙胜| 且末县| 德保县| 乐平市| 江口县| 武夷山市| 都匀市| 辽宁省| 磴口县| 华池县| 开原市| 肇源县| 神农架林区| 福泉市| 宜章县| 郎溪县| 铁岭县| 崇礼县| 金塔县| 巴塘县| 沈丘县| 沛县| 班玛县| 桐柏县| 佛学| 盐边县| 英山县| 沧源| 自治县| 乐业县| 江阴市| 南丹县|