Hello,
My friend and I are learning to program by creating and solving little challenges for each other. In the most recent one, he hid something in the resources of his program. I can find and save the resource off manually using .NET Reflector; but I am trying to do this in a programmatic fashion with C# and not having much luck.
It seems access to resources can be gained via the Assembly object (maybe?) but I haven't been able to use this approach for accessing external files, only the currently executing program.
What objects and methods do I need to extract resources from an external file?
Thanks,
M. W. Jones