I have a project, let’s call it “BASE”, that has a bunch of .CSV files as Resources. The project makes references to My.Resources.XXXXXXX in different methods where XXXXXXX is the CSV filename. I am working on a class that derives from “BASE” and I would like to change some of the .CSV files and replace the ones that are in the “BASE” project with mine. I would like the methods in the base project to use my CSV files when it calls My.Resources.XXXXXX instead of the files that are in “BASE”‘s Resources. Any tips on how to do it? (any .NET language is welcome)
Share
This is a little hackey but works great:
In your derived class:
My Custom ResourceManager: