up vote 0 down vote favorite
share [g+] share [fb]

I'm using reflection to get the properties of an object and there's no difficulty in that but I need to make my class even more generic so basically what I'm trying to do is the following:

PropertyInfo[] properties = (typeof ("ObjectName")).GetProperties(BindingFlags.Public | BindingFlags.Instance);

Or something similar. Notice the use of a string inside the typeof. I know this doesn't work, this is just to show what I'm trying to accomplish. I've also tried:

public void Test(object myObject)  
{  
    typeof(myObject.GetType());  

    Type myType = myObject.GetType();
    typeof(myType);
}

with no success.

link|improve this question

feedback

3 Answers

up vote 1 down vote accepted

If you just want to get the Type of the object in question, use the object.GetType() method, like this:

Type myType = myObject.GetType();

PropertyInfo[] properties = myType.GetProperties(
    BindingFlags.Public | BindingFlags.Instance);

This assumes that you have an instance of the type already, but that you don't know what the type would be at compile time, or that it could be any type.

link|improve this answer
feedback

Sounds like you may want Type.GetType or Assembly.GetType. One caveat with the former - unless the type is in the calling assembly or mscorlib, you need to give the assembly name as well as the type name - see this question from earlier today for an example.

Alternatively, in your example code you've got myObject.GetType() - doesn't that really do everything you want? It's not clear exactly what you're trying to achieve here.

link|improve this answer
I agree that you should be able to use myObject.GetType().GetProperties( ... ). – tvanfosson Mar 9 '09 at 21:46
feedback

You want the static Type.GetType method. For example:

Type t=Type.GetType("System.String");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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