I exported a project which uses some files as icons, as a class library. Now when I use the library in another project, it is unable to find those icons. How can I export it in such a way that they are available even in the project that uses the library?
Thanks and regards,
Rohith
Add the icons to the library project and mark them as
Embedded Resourcefiles. Then use theAssembly.GetManifestResourceStream(...)function to read them.