วิธีการวนลูปผ่านคุณสมบัติทั้งหมดของคลาส?


168

ฉันมีเรียน

Public Class Foo
    Private _Name As String
    Public Property Name() As String
        Get
            Return _Name
        End Get
        Set(ByVal value As String)
            _Name = value
        End Set
    End Property

    Private _Age As String
    Public Property Age() As String
        Get
            Return _Age
        End Get
        Set(ByVal value As String)
            _Age = value
        End Set
    End Property

    Private _ContactNumber As String
    Public Property ContactNumber() As String
        Get
            Return _ContactNumber
        End Get
        Set(ByVal value As String)
            _ContactNumber = value
        End Set
    End Property


End Class

ฉันต้องการวนลูปผ่านคุณสมบัติของคลาสข้างต้น เช่น;

Public Sub DisplayAll(ByVal Someobject As Foo)
    For Each _Property As something In Someobject.Properties
        Console.WriteLine(_Property.Name & "=" & _Property.value)
    Next
End Sub

คำตอบ:


297

ใช้การสะท้อน:

Type type = obj.GetType();
PropertyInfo[] properties = type.GetProperties();

foreach (PropertyInfo property in properties)
{
    Console.WriteLine("Name: " + property.Name + ", Value: " + property.GetValue(obj, null));
}

สำหรับ Excel - รายการเครื่องมือ / การอ้างอิงใดที่จะต้องเพิ่มเพื่อเข้าใช้ BindingFlags เนื่องจากไม่มีรายการ "System.Reflection" ในรายการ

แก้ไข: คุณยังสามารถระบุค่า BindingFlags เป็นtype.GetProperties():

BindingFlags flags = BindingFlags.Public | BindingFlags.Instance;
PropertyInfo[] properties = type.GetProperties(flags);

ที่จะ จำกัด คุณสมบัติที่ส่งคืนไปยังคุณสมบัติของอินสแตนซ์สาธารณะ (ไม่รวมคุณสมบัติสแตติกคุณสมบัติที่ได้รับการป้องกัน ฯลฯ )

คุณไม่จำเป็นต้องระบุBindingFlags.GetPropertyคุณใช้เมื่อเรียกtype.InvokeMember()เพื่อรับค่าของคุณสมบัติ


Btw ไม่ควรมีแฟลกการรวมบางอย่างสำหรับวิธี GetProperties ใช่ไหม ชอบBindingFlags.Public | BindingFlags.GetPropertyหรืออะไร
Svish

@Svish คุณพูดถูก :) มันสามารถใช้ BindingFlags ได้บ้าง แต่เป็นทางเลือก คุณอาจต้องการสาธารณะ | ตัวอย่าง.
Brannon

เคล็ดลับ: ถ้าคุณกำลังจัดการกับเขตข้อมูลคงที่เพียงส่งผ่านค่าว่างที่นี่: property.GetValue (null);
alansiqueira27

42

โปรดทราบว่าถ้าวัตถุที่คุณกำลังพูดถึงมีรูปแบบคุณสมบัติที่กำหนดเอง (เช่นDataRowViewฯลฯDataTable) แล้วคุณจะต้องใช้TypeDescriptor; ข่าวดีก็คือว่านี่ยังใช้งานได้ดีสำหรับชั้นเรียนปกติ (และอาจเร็วกว่าการสะท้อน ):

foreach(PropertyDescriptor prop in TypeDescriptor.GetProperties(obj)) {
    Console.WriteLine("{0} = {1}", prop.Name, prop.GetValue(obj));
}

นอกจากนี้ยังช่วยให้เข้าถึงสิ่งต่างๆเช่นTypeConverterการจัดรูปแบบได้อย่างง่ายดาย:

    string fmt = prop.Converter.ConvertToString(prop.GetValue(obj));

32

VB เวอร์ชัน C # ที่ Brannon มอบให้:

Public Sub DisplayAll(ByVal Someobject As Foo)
    Dim _type As Type = Someobject.GetType()
    Dim properties() As PropertyInfo = _type.GetProperties()  'line 3
    For Each _property As PropertyInfo In properties
        Console.WriteLine("Name: " + _property.Name + ", Value: " + _property.GetValue(Someobject, Nothing))
    Next
End Sub

การใช้แฟล็กการเชื่อมแทนในบรรทัดที่ 3

    Dim flags As BindingFlags = BindingFlags.Public Or BindingFlags.Instance
    Dim properties() As PropertyInfo = _type.GetProperties(flags)

ขอบคุณก็จะได้เอาฉันนานเกินไปที่จะแปลง VB :)
น็

คุณสามารถใช้แปลงอัตโนมัติมีมากมายในเว็บ :)
balexandre

1
ใช่ แต่ไม่ดีเท่าการเข้ารหัสด้วยมือ สิ่งหนึ่งที่น่าเป็นหนึ่งในแปลงรหัส telerik
ชิน Chavan

นี่คือวิธีที่ Telerik จะแปลง: gist.github.com/shmup/3f5abd617a525416fee7
shmup

7

ภาพสะท้อนค่อนข้าง "หนัก"

อาจลองวิธีนี้: // C #

if (item is IEnumerable) {
    foreach (object o in item as IEnumerable) {
            //do function
    }
} else {
    foreach (System.Reflection.PropertyInfo p in obj.GetType().GetProperties())      {
        if (p.CanRead) {
            Console.WriteLine("{0}: {1}", p.Name, p.GetValue(obj,  null)); //possible function
        }
    }
}

'VB.Net

  If TypeOf item Is IEnumerable Then

    For Each o As Object In TryCast(item, IEnumerable)
               'Do Function
     Next
  Else
    For Each p As System.Reflection.PropertyInfo In obj.GetType().GetProperties()
         If p.CanRead Then
               Console.WriteLine("{0}: {1}", p.Name, p.GetValue(obj, Nothing))  'possible function
          End If
      Next
  End If

Reflection จะลดความเร็วของการเรียกใช้เมธอด +/- 1000 x ซึ่งแสดงในประสิทธิภาพของสิ่งต่าง ๆ ในชีวิตประจำวัน


2

นี่เป็นอีกวิธีในการทำโดยใช้แลมบ์ดา LINQ:

ค#:

SomeObject.GetType().GetProperties().ToList().ForEach(x => Console.WriteLine($"{x.Name} = {x.GetValue(SomeObject, null)}"));

VB.NET:

SomeObject.GetType.GetProperties.ToList.ForEach(Sub(x) Console.WriteLine($"{x.Name} = {x.GetValue(SomeObject, Nothing)}"))

1

นี่คือวิธีที่ฉันทำ

foreach (var fi in typeof(CustomRoles).GetFields())
{
    var propertyName = fi.Name;
}

1
ใช้ GetProperties () แทน GetFields () ถ้าวัตถุ / คลาสมีคุณสมบัติแทนฟิลด์
GarDavis

0
private void ResetAllProperties()
    {
        Type type = this.GetType();
        PropertyInfo[] properties = (from c in type.GetProperties()
                                     where c.Name.StartsWith("Doc")
                                     select c).ToArray();
        foreach (PropertyInfo item in properties)
        {
            if (item.PropertyType.FullName == "System.String")
                item.SetValue(this, "", null);
        }
    }

ฉันใช้รหัสบล็อกด้านบนเพื่อรีเซ็ตคุณสมบัติสตริงทั้งหมดในวัตถุควบคุมผู้ใช้เว็บของฉันซึ่งชื่อขึ้นต้นด้วย "Doc"

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