M
Mystique
How can i read resources/strings from one EXE to another?
When I read from the current EXE I use:
ResMng = new ResourceManager("MyClient.Source.MyStringsEN",
Assembly.GetExecutingAssembly());
So I suppose it should be something like this:
ResMng = new ResourceManager("MyClient.Source.MyStringsEN",
Assembly.GetAssembly( ??? ));
I just don't know what to set for GetAssembly( ??? )
thx
When I read from the current EXE I use:
ResMng = new ResourceManager("MyClient.Source.MyStringsEN",
Assembly.GetExecutingAssembly());
So I suppose it should be something like this:
ResMng = new ResourceManager("MyClient.Source.MyStringsEN",
Assembly.GetAssembly( ??? ));
I just don't know what to set for GetAssembly( ??? )
thx