 | ReflectionUtilsSetProperty Method |
Sets the property on an object. This is a simple method that uses straight Reflection
and doesn't support indexers.
Namespace:
Koden.Utils
Assembly:
Koden.Utils (in Koden.Utils.dll) Version: 1.1.6453.26060
Syntaxpublic static void SetProperty(
Object obj,
string property,
Object value
)
Public Shared Sub SetProperty (
obj As Object,
property As String,
value As Object
)
public:
static void SetProperty(
Object^ obj,
String^ property,
Object^ value
)
static member SetProperty :
obj : Object *
property : string *
value : Object -> unit
Parameters
- obj
- Type: SystemObject
Object to set property on - property
- Type: SystemString
Name of the property to set - value
- Type: SystemObject
value to set it to
See Also