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.

How to get the PropertyName of a class?

For example, How can I get the PropertyName "StudentName" of a Student class instance.

public class Student
{
    public string StudentName{get;set;}
}


Student student = new Student();

//I want to get the PropertyName "StudentName"
student.StudentName.GetName(); 
share|improve this question
2  
I don't understand, if you already know the property then by definition you already know the name of the property? – Dean Harding Apr 21 '10 at 5:57
1  
Is there any reason not to directly type in "StudentName" as a string? Maybe, you can get better answers if you try to explain what you are trying to achieve. – Amry Apr 21 '10 at 5:59
It is used for other class, so I do not want to hard-type the string. – Mike108 Apr 21 '10 at 6:40

3 Answers

up vote 1 down vote accepted

See this question .

share|improve this answer
+1 That's the way to do it without hardcoding the string. – Groo Apr 21 '10 at 7:26
Thank you very much. – Mike108 Apr 21 '10 at 15:17

To get the actual name of the property, just from having access to the class, you can use the following:

Type studentType = typeof(Student);
PropertyInfo[] AllStudentProperties = studentType.GetProperties();

If you know the name you're looking for and just need access to the property itself, use:

Type studentType = typeof(Student);
PropertyInfo StudentProperties = studentType.GetProperty("StudentName");

Once you have the PropertyInfo, simply use PropertyInfo.Name, which will give the string representation.

If after this you wan't the value, you're going to have to have an instantiated class to get the value. Other than this, if you use a static property, you can pull the value without instantiating it.

share|improve this answer

You can use the following static method:

static string GetName<T>(T item) where T : class
{
    var properties = typeof(T).GetProperties();
    return properties[0].Name;
}

Use like so:

string name = GetName(new { student.StudentName });

See this question for details.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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