วิธีรับรายการคุณสมบัติของคลาส?


คำตอบ:


797

การสะท้อน; เช่น:

obj.GetType().GetProperties();

สำหรับประเภท:

typeof(Foo).GetProperties();

ตัวอย่างเช่น:

class Foo {
    public int A {get;set;}
    public string B {get;set;}
}
...
Foo foo = new Foo {A = 1, B = "abc"};
foreach(var prop in foo.GetType().GetProperties()) {
    Console.WriteLine("{0}={1}", prop.Name, prop.GetValue(foo, null));
}

กำลังติดตามความคิดเห็น ...

  • ในการรับค่าคุณสมบัติสแตติกให้ส่งผ่านnullอาร์กิวเมนต์แรกไปที่GetValue
  • หากต้องการดูคุณสมบัติที่ไม่ใช่แบบสาธารณะให้ใช้ (ตัวอย่าง) GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance)(ซึ่งจะส่งกลับคุณสมบัติของอินสแตนซ์สาธารณะ / ส่วนตัวทั้งหมด)

13
เพื่อความสมบูรณ์นอกจากนี้ยังมี ComponentModel ซึ่งเปิดเผยโดย TypeDescriptor.GetProperties (... ) - ซึ่งอนุญาตให้มีคุณสมบัติรันไทม์แบบไดนามิก (การสะท้อนนั้นได้รับการแก้ไขในเวลาคอมไพล์)
Marc Gravell

5
คำแนะนำ: ขยายคำตอบเพื่อครอบคลุมคุณสมบัติที่ได้รับการป้องกัน / ส่วนตัว / คงที่ / สืบทอด
ริชาร์ด

1
คำสั่ง foreach ที่คุณแสดงแม้ทำงานได้จากภายในคลาสที่คุณต้องการรับคุณสมบัติของ :)
halfpastfour.am

มันไม่ชัดเจนสำหรับฉันจากวิธีการแสดงความคิดเห็นเพิ่มเติม แต่การใช้ทั้ง 3 ธงทำให้คุณมีinternalคุณสมบัติเช่นกัน บางทีฉันอาจเป็นคนเดียวที่ถูกแขวนบนprivate/ non-publicไวยากรณ์?
brichins

1
@Tadej คุณกำหนดกรอบเป้าหมายอะไร หากคุณใช้. NET core คุณจะต้องตรวจสอบให้แน่ใจว่าคุณมีusing System.Reflectionคำสั่งและการSystem.Reflection.TypeExtensionsอ้างอิงแพคเกจ - สิ่งนี้จะให้พื้นผิว API ที่ขาดหายไปผ่านวิธีการขยาย
Marc Gravell

91

คุณสามารถใช้Reflectionเพื่อทำสิ่งนี้: (จากห้องสมุดของฉัน - สิ่งนี้จะได้รับชื่อและค่า)

public static Dictionary<string, object> DictionaryFromType(object atype)
{
    if (atype == null) return new Dictionary<string, object>();
    Type t = atype.GetType();
    PropertyInfo[] props = t.GetProperties();
    Dictionary<string, object> dict = new Dictionary<string, object>();
    foreach (PropertyInfo prp in props)
    {
        object value = prp.GetValue(atype, new object[]{});
        dict.Add(prp.Name, value);
    }
    return dict;
}

สิ่งนี้จะไม่ทำงานสำหรับคุณสมบัติที่มีดัชนี - สำหรับสิ่งนั้น (มันเริ่มยากขึ้น):

public static Dictionary<string, object> DictionaryFromType(object atype, 
     Dictionary<string, object[]> indexers)
{
    /* replace GetValue() call above with: */
    object value = prp.GetValue(atype, ((indexers.ContainsKey(prp.Name)?indexers[prp.Name]:new string[]{});
}

เพื่อรับคุณสมบัติสาธารณะเท่านั้น ( ดู MSDN บน BindingFlags enum )

/* replace */
PropertyInfo[] props = t.GetProperties();
/* with */
PropertyInfo[] props = t.GetProperties(BindingFlags.Public)

ใช้งานได้กับประเภทที่ไม่ระบุชื่อเช่นกัน!
ในการรับชื่อ:

public static string[] PropertiesFromType(object atype)
{
    if (atype == null) return new string[] {};
    Type t = atype.GetType();
    PropertyInfo[] props = t.GetProperties();
    List<string> propNames = new List<string>();
    foreach (PropertyInfo prp in props)
    {
        propNames.Add(prp.Name);
    }
    return propNames.ToArray();
}

และมันก็เหมือนกันสำหรับค่าหรือคุณสามารถใช้:

GetDictionaryFromType().Keys
// or
GetDictionaryFromType().Values

แต่มันช้าไปหน่อยฉันจะจินตนาการ


... แต่ atype.GetProperty (prp.Name) กำลังจะส่งคืน prp หรือไม่
Marc Gravell

5
เกี่ยวกับบิตคุณสมบัติสาธารณะอ้างอิงจากบทความ MSDN ที่เชื่อมโยง: "หมายเหตุคุณต้องระบุอินสแตนซ์หรือสถิตพร้อมกับสาธารณะหรือไม่ใช่สาธารณะหรือสมาชิกจะไม่ถูกส่งกลับ" ดังนั้นรหัสตัวอย่างควร: t.GetProperties(BindingFlags.Instance | BindingFlags.Public)หรือt.GetProperties(BindingFlags.Static | BindingFlags.Public)
Carl Sharman

ไม่ได้มองหารหัสฉันกำลังมองหาคำอธิบายในการสะท้อนและว้าวชื่นชมมาก! กำหนดให้เป็นแบบทั่วไปและคุณก็อาจบอกได้ว่าโปรแกรมของคุณมีพลังวิเศษ;)
Jaquarh

37
public List<string> GetPropertiesNameOfClass(object pObject)
{
    List<string> propertyList = new List<string>();
    if (pObject != null)
    {
        foreach (var prop in pObject.GetType().GetProperties())
        {
            propertyList.Add(prop.Name);
        }
    }
    return propertyList;
}

ฟังก์ชั่นนี้ใช้สำหรับรับรายการคุณสมบัติคลาส


7
yield returnคุณอาจต้องการที่จะเปลี่ยนแปลงนี้กับการใช้งาน มันไม่ใช่เรื่องใหญ่ แต่เป็นวิธีที่ดีกว่าในการทำมัน
Matthew Haugen

1
ฉันเช่นนี้เพราะมันเป็น (เกือบ) คำตอบเดียวที่ไม่รวมคำว่าสะท้อน

9
แต่สิ่งนี้ยังคงใช้การสะท้อนกลับอยู่
GGG

2
ฉันคิดว่านี่เป็นสิ่งที่ดีกว่า pObject.GetType () GetProperties () เลือก (p => p.Name)
ผิดหวัง

23

คุณสามารถใช้System.ReflectionเนมสเปซกับType.GetProperties()mehod:

PropertyInfo[] propertyInfos;
propertyInfos = typeof(MyClass).GetProperties(BindingFlags.Public|BindingFlags.Static);

23

จากคำตอบของ @ MarcGravell นี่คือรุ่นที่ใช้งานได้ใน Unity C #

ObjectsClass foo = this;
foreach(var prop in foo.GetType().GetProperties()) {
    Debug.Log("{0}={1}, " + prop.Name + ", " + prop.GetValue(foo, null));
}

8

นั่นคือทางออกของฉัน

public class MyObject
{
    public string value1 { get; set; }
    public string value2 { get; set; }

    public PropertyInfo[] GetProperties()
    {
        try
        {
            return this.GetType().GetProperties();
        }
        catch (Exception ex)
        {

            throw ex;
        }
    }

    public PropertyInfo GetByParameterName(string ParameterName)
    {
        try
        {
            return this.GetType().GetProperties().FirstOrDefault(x => x.Name == ParameterName);
        }
        catch (Exception ex)
        {

            throw ex;
        }
    }

    public static MyObject SetValue(MyObject obj, string parameterName,object parameterValue)
    {
        try
        {
            obj.GetType().GetProperties().FirstOrDefault(x => x.Name == parameterName).SetValue(obj, parameterValue);
            return obj;
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }
}

6

คุณสามารถใช้การสะท้อน

Type typeOfMyObject = myObject.GetType();
PropertyInfo[] properties =typeOfMyObject.GetProperties();

3

ฉันกำลังเผชิญกับความต้องการเช่นนี้

จากการสนทนานี้ฉันได้รับแนวคิดใหม่

Obj.GetType().GetProperties()[0].Name

นี่คือการแสดงชื่อคุณสมบัติ

Obj.GetType().GetProperties().Count();

แสดงจำนวนของคุณสมบัติ

ขอบคุณทุกคน. เป็นการสนทนาที่ดี


3

นี่คือคำตอบ @lucasjones ที่ปรับปรุงแล้ว ฉันรวมการปรับปรุงที่กล่าวถึงในส่วนความคิดเห็นหลังจากคำตอบของเขา ฉันหวังว่าบางคนจะพบว่ามีประโยชน์นี้

public static string[] GetTypePropertyNames(object classObject,  BindingFlags bindingFlags)
{
    if (classObject == null)
    {
        throw new ArgumentNullException(nameof(classObject));
    }

        var type = classObject.GetType();
        var propertyInfos = type.GetProperties(bindingFlags);

        return propertyInfos.Select(propertyInfo => propertyInfo.Name).ToArray();
 }
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.