P
platinumbay
Is it possible to change embedded resource files at runtime, i.e. after the
Assembly has been compiled?
Thanks much
Assembly has been compiled?
Thanks much
Steven said:Hi Platinumbay,
Thanks for your posting. As for the embeded resource in a .net
assembly, they're part of the assembly's binary file so we can't
manually modify them without recompiling the whole assembly. If there
is some resources that we need to change frequently, it is recommend
that we put them in a separate assembly file which only contains
resources so that we can only recompile that assembly when changing
some resources in it. Thanks.