 | ReflectionUtilsGetField Method |
Retrieve a field dynamically from an object. This is a simple implementation that's
straight Reflection and doesn't support indexers.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static Object GetField(
Object Object,
string Property
)
Public Shared Function GetField (
Object As Object,
Property As String
) As Object
public:
static Object^ GetField(
Object^ Object,
String^ Property
)
static member GetField :
Object : Object *
Property : string -> Object
Parameters
- Object
- Type: SystemObject
Object to retreve Field from - Property
- Type: SystemString
name of the field to retrieve
Return Value
Type:
Object[Missing <returns> documentation for "M:Koden.Utils.ReflectionUtils.GetField(System.Object,System.String)"]
See Also