Where are the embedded resources stored in the .NET application?

If I add resources to Resource.resx, are they embedded in the executable? I read somewhere that they are stored in the assembly, but I think that all files (also copied to the output folder) are part of the assembly if the assembly is the final set of files that make up the application.? Or is the assembly just files and modules created by the compiler and the resources are not taken into account? Or how does it work?

+4
source share
1 answer

Nested resources are stored inside DLL or EXE files.

+2
source

All Articles