Get class property name - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T20:32:29Z http://stackoverflow.com/feeds/question/152250 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/152250/get-class-property-name 5 Get class property name MiguelE 2008-09-30T08:34:56Z 2008-09-30T09:02:57Z <p>I have my winform application gathering data using databinding. Everything looks fine except that I have to link the <strong>property</strong> with the <strong>textedit</strong> using a string:</p> <blockquote> <p>Me.TextEdit4.DataBindings.Add(New System.Windows.Forms.Binding("EditValue", Me.MyClassBindingSource, "MyClassProperty", True))</p> </blockquote> <p>This works fine but if I change the class' property name, the compiler obviously will not warn me . </p> <p>I would like to be able to get the property name by reflection but I don't know how to specify the name of the property I want (I only know how to iterate among all the properties of the class) </p> <p>Any idea?</p> http://stackoverflow.com/questions/152250/get-class-property-name/152254#152254 3 Answer by aku for Get class property name aku 2008-09-30T08:39:25Z 2008-09-30T08:39:25Z <p>Ironically reflection expects that you provide property name to get it's info :) </p> <p>You can create custom attribute, apply it to desired property. Then you will be able to simply get name of the property having this attribute.</p> http://stackoverflow.com/questions/152250/get-class-property-name/152257#152257 0 Answer by Konrad Rudolph for Get class property name Konrad Rudolph 2008-09-30T08:40:17Z 2008-09-30T08:40:17Z <p>You'll have the same problem using reflection because in order to find the right property in all the type's properties, you'll have to know its name, right?</p> http://stackoverflow.com/questions/152250/get-class-property-name/152258#152258 0 Answer by Guvante for Get class property name Guvante 2008-09-30T08:40:35Z 2008-09-30T08:40:35Z <p>You can reflect a Type, but you can't reflect its members except by name.</p> <p>If that were the only property, or you knew for certain the ordering you could find it by index, but generally speaking a string is the safest way to go.</p> <p>I believe changing the name will cause a run-time exception, but am not 100% certain, in either case that is probably the best possibility.</p> <p>Assuming no exception occurs automatically, you could add a Debug.Assert that checks to see if the property by that name exists, but again that is run time only.</p> http://stackoverflow.com/questions/152250/get-class-property-name/152260#152260 0 Answer by martinsb for Get class property name martinsb 2008-09-30T08:42:25Z 2008-09-30T08:42:25Z <p>1) Specify the exact property name that you want and keep it that way</p> <p>2) Write a test involving that property name.</p> http://stackoverflow.com/questions/152250/get-class-property-name/152279#152279 4 Answer by aku for Get class property name aku 2008-09-30T08:48:22Z 2008-09-30T08:48:22Z <p>Here is an example of what I'm talking about:</p> <pre><code>[AttributeUsage(AttributeTargets.Property)] class TextProperyAttribute: Attribute {} class MyTextBox { [TextPropery] public string Text { get; set;} public int Foo { get; set;} public double Bar { get; set;} } static string GetTextProperty(Type type) { foreach (PropertyInfo info in type.GetProperties()) { if (info.GetCustomAttributes(typeof(TextProperyAttribute), true).Length &gt; 0) { return info.Name; } } return null; } ... Type type = typeof (MyTextBox); string name = GetTextProperty(type); Console.WriteLine(name); // Prints "Text" </code></pre> http://stackoverflow.com/questions/152250/get-class-property-name/152293#152293 4 Answer by Romain Verdier for Get class property name Romain Verdier 2008-09-30T08:55:00Z 2008-09-30T09:02:57Z <p>If you are using C# 3.0, there is a way to get the name of the property dynamically, without hard coded it.</p> <pre><code>private string GetPropertyName&lt;TValue&gt;(Expression&lt;Func&lt;BindingSourceType, TValue&gt;&gt; propertySelector) { var memberExpression = propertySelector.Body as MemberExpression; if (memberExpression != null) { return memberExpression.Member.Name; } else { return string.empty; } } </code></pre> <p>Where <code>BindingSourceType</code> is the class name of your datasource object instance.</p> <p>Then, you could use a lambda expression to select the property you want to bind, in a strongly typed manner :</p> <pre><code>this.textBox.DataBindings.Add(GetPropertyName(o =&gt; o.MyClassProperty), this.myDataSourceObject, "Text"); </code></pre> <p>It will allow you to refactor your code safely, without braking all your databinding stuff. But using expression trees is the same as using reflection, in terms of performance.</p> <p><strong>The previous code is quite ugly and unchecked, but you get the idea.</strong></p>