How can I access an inherited protected field from an object by reflection?
feedback
|
|
Two issues you may be having issues with - the field might not be accessible normally (private), and its not in the class you are looking at, but somewhere up the hierarchy. Something like this would work even with those issues:
| |||||||
feedback
|
| |||||||||||
feedback
|
|
Use reflection to access the members of the class instance, make them accessible and set their respective values. Of course you'd have to know the name of each member you want to change, but I guess that won't be a problem.
| |||
|
feedback
|
|
Do you perhaps mean from a different object an untrusted context with a | |||||||||||
feedback
|
|
You could do something like...
You might also need to change the accessibility, as noted in Maurice's answer. | |||||
feedback
|