vote up 0 vote down star
1

I trying implement in my code this example link but in

private object GetSourceValue(string propertyName) {}

he have a switch comparing various types. I want remove this types and properties and have a only GetSourceValue does can get source of property using only a string in parameter. I want pass class and property in string e resolve the value object of property.

Its Possible?

flag

50% accept rate

1 Answer

vote up 4 vote down
 public static object GetPropValue( object src, string propName )
 {
     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|flag
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 at 10:56
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 Swangren Jul 31 at 22:12

Your Answer

Get an OpenID
or

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