Is Embed Resource a good approach for a read only xml database?
- by Nasser Hajloo
I have an open source application (here)
This application get a character or a sentence and give some unicode information about it.
Iuse Unicode Character Database which provided by Unicode.org this is a XML document (130MB)
At first I embed this XML to my DLL but I don't know is it a good approach or no. because DLL size growth just because of this XML document. I can use it like any other resources but usercan see it.
What Should I do? What is the best pattern for this? and Why ?
TIA