Click or drag to resize

ReflectionUtilsGetProperty Method

Retrieve a property value from an object dynamically. This is a simple version that uses Reflection calls directly. It doesn't support indexers.

Namespace:  Koden.Utils
Assembly:  Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntax
public static Object GetProperty(
	Object instance,
	string property
)

Parameters

instance
Type: SystemObject
Object to make the call on
property
Type: SystemString
Property to retrieve

Return Value

Type: Object
Object - cast to proper type
See Also