Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
How can I read the properties of a C# class dynamically?

I have to get values of class members using strings of their names only. I think I have to use Reflection but I am not realy sure how to. Can you help me?

share|improve this question
3  
I have one question before I can help - What are you talking about? Can you post an example of what you are trying to do? – JonH Jan 3 at 13:51
Yep. We'll vote to close the question if you don't really provide any example of what you need. – gideon Jan 3 at 13:52

marked as duplicate by MarcinJuraszek, gideon, CodeNaked, flem, Will Jan 4 at 15:07

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted
MemberInfo member = typeof(MyClass).GetMember("membername");

GetMember reference.

If you know type of member you're looking for, you can use .GetMethod, .GetField, .GetProperty, etc.

If you don't know the type you are working with:

var myobject = someobject;
string membername = "somemember";
MemberInfo member = myobject.GetType().GetMember(membername);

Different member types have different means to getting the value. For a property you would do:

var myobject = someobject;
string propertyname = "somemember";
PropertyInfo property = myobject.GetType().GetProperty(membername);
object value = property.GetValue(myobject, null);
share|improve this answer
public class Foo
{
  public string A { get; set; }
}
public class Example
{
  public void GetPropertyValueExample()
  {
    Foo f = new Foo();
    f.A = "Example";
    var val = f.GetType().GetProperty("A").GetValue(f, null);
  }
}
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.