up vote 32 down vote favorite
8
share [g+] share [fb]

I am trying implement the Data transformation using Reflection example in my code.

The GetSourceValue function has a switch comparing various types, but I want to remove these types and properties and have GetSourceValue get the value of the property using only a single string as the parameter. I want to pass a class and property in the string and resolve the value of the property.

Is this possible?

link|improve this question

68% accept rate
feedback

5 Answers

up vote 67 down vote accepted
 public static object GetPropValue( object src, string propName )
 {
     return src.GetType( ).GetProperty( propName ).GetValue( src, null );
 }

Of course, you will want to add validation and whatnot, but that is the gist of it.

link|improve this answer
Yes i know i can use like you say. But i don't want pass src object. I want pass only a string with name like "Class1.Prop1" and give me the Prop1 value of Class1 class. – pho3nix Jul 29 '09 at 10:56
9  
You asked in your question "I want pass class", I assume that meant "object" and not "class" since "class" makes little sense. Why would you vote this down? Can you not figure out how to modify this code to use "this" instead? Is it a static property of a class? You need to be more specific then, this is the correct answer. – Ed S. Jul 31 '09 at 22:12
feedback

How about something like this:

public Object GetPropValue(String name, Object obj) {
    foreach (String part in name.Split('.')) {
        if (obj == null) { return null; }

        Type type = obj.GetType();
        PropertyInfo info = type.GetProperty(part);
        if (info == null) { return null; }

        obj = info.GetValue(obj, null);
    }
    return obj;
}
link|improve this answer
feedback

what about using the CallByName of the visualbasic namespace? which is reflection.

using Microsoft.VisualBasic;
using Microsoft.VisualBasic.CompilerServices;

and then

Versioned.CallByName(this, "method/function/prop name", CallType.Get).ToString();
link|improve this answer
feedback

You never mention what object you are inspecting, and since you are rejecting ones that reference a given object, I will assume you mean a static one.

using System.Reflection;
public object GetPropValue(string prop)
{
    int splitPoint = prop.LastIndexOf('.');
    Type type = Assembly.GetEntryAssembly().GetType(prop.Substring(0, splitPoint));
    object obj = null;
    return type.GetProperty(prop.Substring(splitPoint + 1)).GetValue(obj, null);
}

Note that I marked the object that is being inspected with the local variable obj. null means static, otherwise set it to what you want. Also note that the GetEntryAssembly() is one of a few available methods to get the "running" assembly, you may want to play around with it if you are having a hard time loading the type.

link|improve this answer
feedback
Dim NewHandle As YourType = CType(Microsoft.VisualBasic.CallByName(ObjectThatContainsYourVariable, "YourVariableName", CallType), YourType)
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.