M
Michael Lev
For a class (let's call it Config ) not defined/known in my code,
I want create an instance. Specifically, something like:
Config config = (Config)serializer.Deserialize(stream);
Which parameters does the function need and how to use Reflection
properly?
I'll appreciate a short example.
I want create an instance. Specifically, something like:
Config config = (Config)serializer.Deserialize(stream);
Which parameters does the function need and how to use Reflection
properly?
I'll appreciate a short example.