How to loop through all the properties of a class? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T01:26:59Zhttp://stackoverflow.com/feeds/question/531384http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/531384/how-to-loop-through-all-the-properties-of-a-class4How to loop through all the properties of a class?Sachin2009-02-10T07:44:42Z2009-02-10T09:00:29Z
<p>I have a class.</p>
<pre><code>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
</code></pre>
<p>I want to loop through the properties of the above class.
eg;</p>
<pre><code>Public Sub DisplayAll(ByVal Someobject As Foo)
For Each _Property As something In Someobject.Properties
Console.WriteLine(_Property.Name & "=" & _Property.value)
Next
End Sub
</code></pre>
http://stackoverflow.com/questions/531384/how-to-loop-through-all-the-properties-of-a-class/531388#53138810Answer by Brannon for How to loop through all the properties of a class?Brannon2009-02-10T07:47:37Z2009-02-10T07:56:38Z<p>Use Reflection:</p>
<pre><code>Type type = obj.GetType();
PropertyInfo[] properties = type.GetProperties();
foreach (PropertyInfo property in properties)
{
Console.WriteLine("Name: " + property.Name + ", Value: " + property.GetValue(obj, null));
}
</code></pre>
<p>Edit: You can also specify a BindingFlags value to <code>type.GetProperties()</code>:</p>
<pre><code>BindingFlags flags = BindingFlags.Public | BindingFlags.Instance;
PropertyInfo[] properties = type.GetProperties(flags);
</code></pre>
<p>That will restrict the returned properties to public instance properties (excluding static properties, protected properties, etc).</p>
<p>You don't need to specify <code>BindingFlags.GetProperty</code>, you use that when calling <code>type.InvokeMember()</code> to get the value of a property.</p>
http://stackoverflow.com/questions/531384/how-to-loop-through-all-the-properties-of-a-class/531405#5314053Answer by Sachin for How to loop through all the properties of a class?Sachin2009-02-10T07:53:47Z2009-02-10T08:21:01Z<p>VB version of C# given by Brannon:</p>
<pre><code>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
</code></pre>
<p>Using Binding flags in instead of line no.3</p>
<pre><code> Dim flags As BindingFlags = BindingFlags.Public Or BindingFlags.Instance
Dim properties() As PropertyInfo = _type.GetProperties(flags)
</code></pre>
http://stackoverflow.com/questions/531384/how-to-loop-through-all-the-properties-of-a-class/531549#5315492Answer by Marc Gravell for How to loop through all the properties of a class?Marc Gravell2009-02-10T09:00:29Z2009-02-10T09:00:29Z<p>Note that if the object you are talking about has a custom property model (such as <code>DataRowView</code> etc for <code>DataTable</code>), then you need to use <code>TypeDescriptor</code>; the good news is that this still works fine for regular classes (and can even be <a href="http://www.codeproject.com/KB/cs/HyperPropertyDescriptor.aspx" rel="nofollow">much quicker than reflection</a>):</p>
<pre><code>foreach(PropertyDescriptor prop in TypeDescriptor.GetProperties(obj)) {
Console.WriteLine("{0} = {1}", prop.Name, prop.GetValue(obj));
}
</code></pre>
<p>This also provides easy access to things like <code>TypeConverter</code> for formatting:</p>
<pre><code> string fmt = prop.Converter.ConvertToString(prop.GetValue(obj));
</code></pre>