views:

62

answers:

1

Hey Guys,

I have a propertyInfo object and I try to do a GetValue using it.

object source = mysourceObject //This object has a property "Prop1" of type Collection<>.

var propInfo = source.GetType().GetProperty("Prop1");

var propValue = prop.GetValue(this, null);

// do whatever with propValue
// ...

I get error at the GetValue() call as "Value cannot be null.\r\nParameter name: source"

"Prop1" is a plain property declared as Collection.

prop.PropertyType = {Name = "Collection1" FullName = "System.Collections.ObjectModel.Collection1[[Application1.DummyClass, Application1, Version=1.5.5.5834, Culture=neutral, PublicKeyToken=628b2ce865838339]]"} System.Type {System.RuntimeType}

+1  A: 

You need to get the property value for source, not this :

var propValue = prop.GetValue(source, null);
Thomas Levesque