I have a Type, a String and an Object.
Is there some way I can call the parse method or convert for that type on the string dynamically?
Basically how do I r
It's technically impossible to look at a string, and know for certain which type it represents.
So, for any generic approach, you'll need at least:
Take a look at the static Convert.ChangeType() method.
Convert.ChangeType()