how to get name of a class property? - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T22:47:33Zhttp://stackoverflow.com/feeds/question/672412http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/672412/how-to-get-name-of-a-class-property1how to get name of a class property?Jeffrey2009-03-23T06:41:36Z2009-03-23T07:37:46Z
<p>Is there anyway I can get the name of class property "IntProperty"?</p>
<pre><code>public class ClassName
{
public static int IntProperty { get { return 0; } }
}
//something like below but I want to get the string of "IntProperty"
ClassName.IntProperty.GetType().Name
</code></pre>
<p>Basically what I want to do is to dyanmically save property name string into database, and later on retrive from database and invoke the property dynamically.</p>
<p>Seems like what I am looking for is similar to duck typing I think.</p>
<p>Thanks!</p>
<p>UPDATED:</p>
<p>This is the actual code. This is more like a workflow kind of thing. But each task is defined as property of a class (class is used to group tasks).</p>
<pre><code>public class ApplicationTask
{
public static Task<string> SendIncompleteNotification
{
get
{
return new Task<string>
(
a => Console.WriteLine("Sample Task")
, "This is a sample task which does nothing."
);
}
}
}
</code></pre>
<p>So the code will be able to retrieve the full name of the class and property something like: namespace.ApplicationTask.SendIncompleteNotification and save this into database. Later on the code will read the string and dynamically create the task and pass it into another to execute.</p>
http://stackoverflow.com/questions/672412/how-to-get-name-of-a-class-property/672430#6724300Answer by davyroegiers for how to get name of a class property?davyroegiers2009-03-23T06:54:56Z2009-03-23T06:54:56Z<pre><code>Type objectType = this.GetType();
PropertyInfo property = objectType.GetProperty("intProperty");
System.Console.Write(property.Name);
</code></pre>
<p>Is this what you need?</p>
http://stackoverflow.com/questions/672412/how-to-get-name-of-a-class-property/672436#6724363Answer by CMS for how to get name of a class property?CMS2009-03-23T07:00:59Z2009-03-23T07:00:59Z<p>I think that the use of the <a href="http://msdn.microsoft.com/en-us/library/kz0a8sxy.aspx" rel="nofollow">GetProperty</a> method in this case, is redundant, because you need to know the property name to call the method.</p>
<p>You could loop through your properties and extract its name:</p>
<pre><code>foreach (PropertyInfo p in typeof(ClassName).GetProperties())
{
string propertyName = p.Name;
//....
}
</code></pre>
http://stackoverflow.com/questions/672412/how-to-get-name-of-a-class-property/672447#6724471Answer by Jon Skeet for how to get name of a class property?Jon Skeet2009-03-23T07:06:49Z2009-03-23T07:37:46Z<p>The result of <code>ClassName.IntProperty</code> is just an integer value. As soon as it's executed and the result is returned, there's no trace of it having come from <code>IntProperty</code>.</p>
<p>If you're using .NET 3.5 you can use an expression tree instead, usually created via a lambda expression:</p>
<pre><code>Expression<Func<int>> exp = () => ClassName.IntProperty;
</code></pre>
<p>You can then compile and execute the expression <em>and</em> separately find out what it's doing (retrieving <code>IntProperty</code> in this case). I'm not really sure whether this is suitable for what you want to do though.</p>
<p>If you <em>do</em> work out how to save the property name in the database, then <code>GetProperty</code> is the way to go on the retrieval front.</p>
<p>Perhaps if you could give more context in the question in terms of how you want to use this, we could help more. You've shown just an expression - if you could show it in terms of where you'd be using it, that would be great.</p>
<p>EDIT: You've expanded the property, but not how it's being called. Do you <em>need</em> to call it directly, rather than just fetching the list of properties using <code>Type.GetProperties</code> and storing the list of property names in the database?</p>
<p>Again, if you could show the code which <em>calls</em> the property, and how you want it to interact with the database, we may be able to make more progress.</p>