How to loop through all the properties of a class? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T01:26:59Z http://stackoverflow.com/feeds/question/531384 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/531384/how-to-loop-through-all-the-properties-of-a-class 4 How to loop through all the properties of a class? Sachin 2009-02-10T07:44:42Z 2009-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 &amp; "=" &amp; _Property.value) Next End Sub </code></pre> http://stackoverflow.com/questions/531384/how-to-loop-through-all-the-properties-of-a-class/531388#531388 10 Answer by Brannon for How to loop through all the properties of a class? Brannon 2009-02-10T07:47:37Z 2009-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#531405 3 Answer by Sachin for How to loop through all the properties of a class? Sachin 2009-02-10T07:53:47Z 2009-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#531549 2 Answer by Marc Gravell for How to loop through all the properties of a class? Marc Gravell 2009-02-10T09:00:29Z 2009-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>