I need to cast a property to its actual type dynamically. How do I/Can I do this using reflection?
To explain the real scenario that I am working on a bit. I am tryi
Once you get the reflected type, you can use Convert.ChangeType().
Convert.ChangeType()