vote up 0 vote down star

I have never used an embedded resource DLL before. I would like to start right so that I'd not have to rename DLL later on.

Suppose that, I have a Main Exe file named "Demo.exe",
how would you name embedded resource associated with it?

Demo.Resource.dll? Resource.Demo.dll? etc?

flag

1 Answer

vote up 3 vote down check

This may be a silly question, but do you have any reason to use a separate DLL at all?

Why not just embed the resources into Demo.exe?

If you absolutely do have to have a separate resources DLL, I'd go with Demo.Resources.dll

link|flag
After reading "stackoverflow.com/questions/773718/";, I thought it might have been a good idea to hide some resource. – Sung Meister Apr 21 at 19:05
1  
Well, to start with you should be aware that it's not really "hiding" them much - but my point is that you can embed resources in a .exe file as easily as in a .dll. – Jon Skeet Apr 21 at 19:14

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.