How do I get the name of a property from a property in C# (2.0) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:15:29Z http://stackoverflow.com/feeds/question/388775 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0 4 How do I get the name of a property from a property in C# (2.0) kpollock 2008-12-23T12:37:10Z 2009-05-13T15:45:11Z <p>I know I could have an attribute but that's more work than I want to go to... and not general enough.</p> <p>I want to do something like </p> <pre><code>class Whotsit { private string testProp = "thingy"; public string TestProp { get { return testProp; } set { testProp = value; } } } ... Whotsit whotsit = new Whotsit(); string value = GetName(whotsit.TestProp); //precise syntax up for grabs.. </code></pre> <p>where I'd expect value to equal "TestProp"</p> <p>but I can't for the life of me find the right reflection methods to write the GetName method...</p> <p>EDIT: Why do I want to do this? I have a class to store settings read from a 'name', 'value' table. This is populated by a generalised method based upon reflection. I'd quite like to write the reverse...</p> <pre><code>/// &lt;summary&gt; /// Populates an object from a datatable where the rows have columns called NameField and ValueField. /// If the property with the 'name' exists, and is not read-only, it is populated from the /// valueField. Any other columns in the dataTable are ignored. If there is no property called /// nameField it is ignored. Any properties of the object not found in the data table retain their /// original values. /// &lt;/summary&gt; /// &lt;typeparam name="T"&gt;Type of the object to be populated.&lt;/typeparam&gt; /// &lt;param name="toBePopulated"&gt;The object to be populated&lt;/param&gt; /// &lt;param name="dataTable"&gt;'name, 'value' Data table to populate the object from.&lt;/param&gt; /// &lt;param name="nameField"&gt;Field name of the 'name' field'.&lt;/param&gt; /// &lt;param name="valueField"&gt;Field name of the 'value' field.&lt;/param&gt; /// &lt;param name="options"&gt;Setting to control conversions - e.g. nulls as empty strings.&lt;/param&gt; public static void PopulateFromNameValueDataTable&lt;T&gt; (T toBePopulated, System.Data.DataTable dataTable, string nameField, string valueField, PopulateOptions options) { Type type = typeof(T); bool nullStringsAsEmptyString = options == PopulateOptions.NullStringsAsEmptyString; foreach (DataRow dataRow in dataTable.Rows) { string name = dataRow[nameField].ToString(); System.Reflection.PropertyInfo property = type.GetProperty(name); object value = dataRow[valueField]; if (property != null) { Type propertyType = property.PropertyType; if (nullStringsAsEmptyString &amp;&amp; (propertyType == typeof(String))) { value = TypeHelper.EmptyStringIfNull(value); } else { value = TypeHelper.DefaultIfNull(value, propertyType); } property.SetValue(toBePopulated, System.Convert.ChangeType(value, propertyType), null); } } } </code></pre> <p>FURTHER EDIT: I am just in code, have an instance of Whotsit and I want to get the text string of the 'TestProp' property. It seems kind of weird I know, I can just use the literal "TestProp" - or in the case of my class to datatable function I'd be in a foreach loop of PropertyInfos. I was just curious... </p> <p>The original code had string constants, which I found clumsy.</p> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388791#388791 0 Answer by Stewart Johnson for How do I get the name of a property from a property in C# (2.0) Stewart Johnson 2008-12-23T12:44:29Z 2008-12-23T12:44:29Z <p>The <a href="http://msdn.microsoft.com/en-us/library/kyaxdd3x.aspx" rel="nofollow">GetProperties on the Type class</a> will give you the list of properties on that type.</p> <pre><code>Type t = whotsit.GetType(); PropertyInfo[] pis = t.GetProperties(); </code></pre> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388793#388793 6 Answer by Jon Skeet for How do I get the name of a property from a property in C# (2.0) Jon Skeet 2008-12-23T12:45:32Z 2008-12-23T12:45:32Z <p>No, there's nothing to do this. The expression <code>whotsit.TestProp</code> will evaluate the property. What you want is the mythical "infoof" operator:</p> <pre><code>// I wish... MemberInfo member = infoof(whotsit.TestProp); </code></pre> <p>As it is, you can only use reflection to get the property by name - not from code. (Or get all the properties, of course. It still doesn't help you with your sample though.)</p> <p>One alternative is to use an expression tree:</p> <pre><code>Expression&lt;Func&lt;string&gt;&gt; = () =&gt; whotsit.TestProp; </code></pre> <p>then examine the expression tree to get the property.</p> <p>If none of this helps, perhaps you could tell us more about why you want this functionality?</p> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388798#388798 0 Answer by ng5000 for How do I get the name of a property from a property in C# (2.0) ng5000 2008-12-23T12:47:29Z 2008-12-23T13:31:07Z <p>What you are trying to do is not possible. Using reflection you can:</p> <ul> <li>Get a property, field or method's details from it's string name.</li> <li>Get a list of all properties, fields or methods for a given type.</li> </ul> <p>Your GetName method, when called, is passed a string. The GetMethod will know about the string but retains no source property meta data.</p> <p>Out of interest, why are you trying to do this?</p> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388808#388808 0 Answer by Jarek for How do I get the name of a property from a property in C# (2.0) Jarek 2008-12-23T12:53:03Z 2008-12-23T12:53:03Z <p>I don't think it's possible, the only way to do this is to iterate over properties:</p> <pre><code>class TestClass { private string _field; public string MyProperty { get { return _field; } } } class Program { static void Main(string[] args) { TestClass test = new TestClass(); PropertyInfo[] info = test.GetType().GetProperties(); foreach(PropertyInfo i in info) Console.WriteLine(i.Name); Console.Read(); } } </code></pre> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388841#388841 2 Answer by lubos hasko for How do I get the name of a property from a property in C# (2.0) lubos hasko 2008-12-23T13:11:58Z 2008-12-23T13:25:09Z <p>It is possible (without reflection) but only with latest C# 3.0</p> <p><strong>quick &amp; very very dirty</strong></p> <pre><code>class Program { static void Main() { string propertyName = GetName(() =&gt; AppDomain.CurrentDomain); Console.WriteLine(propertyName); // prints "CurrentDomain" Console.ReadLine(); } public static string GetName(Expression&lt;Func&lt;object&gt;&gt; property) { return property.Body.ToString().Split('.').Last(); } } </code></pre> <p><strong>Update:</strong> I've just realized that <a href="http://stackoverflow.com/questions/305223/jon-skeet-facts"><strong>Jon Skeet</strong></a> (anyone surprised? :) has covered this possibility already but I'll keep my answer here just in case someone is interested in some example to start with.</p> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388869#388869 0 Answer by Mike Hofer for How do I get the name of a property from a property in C# (2.0) Mike Hofer 2008-12-23T13:30:03Z 2008-12-23T13:30:03Z <p>Kpollack, you said in an earlier comment:</p> <blockquote> <p>which still won't give me the ability to get the name of a property from an instance of it.</p> </blockquote> <p>This leads me to believe that you somehow have a reference to a property. How did you get this reference? What is its type? Could you provide a code sample? If it's a PropertyInfo object, you already have what you need; since this doesn't appear to be the case, we're dealing with something else, and I'd be very interested to see what it is that you <em>do</em> have to work with.</p> <p>P.S. Forgive me for seeming obtuse: it's early, I haven't had enough coffee, and I don't have my IDE in front of me. :-/</p> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/388876#388876 0 Answer by OrbMan for How do I get the name of a property from a property in C# (2.0) OrbMan 2008-12-23T13:35:56Z 2008-12-23T13:35:56Z <p>FYI, I tried to serialize it to see if, by chance, that contains the property name, but no luck.</p> <p>Non-working code below:</p> <pre><code>Whotsit w = new Whotsit(); XmlSerializer xs = new XmlSerializer(w.TestProp.GetType()); TextWriter sw = new StreamWriter(@"c:\TestProp.xml"); xs.Serialize(sw, w.TestProp); sw.Close(); </code></pre> http://stackoverflow.com/questions/388775/how-do-i-get-the-name-of-a-property-from-a-property-in-c-2-0/858729#858729 0 Answer by Jeffrey Knight for How do I get the name of a property from a property in C# (2.0) Jeffrey Knight 2009-05-13T15:45:11Z 2009-05-13T15:45:11Z <p>See <a href="http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type">http://stackoverflow.com/questions/855337/referring-to-the-property-itself-in-c-reflection-generic-type</a></p>