How to get path of resources file?
I have added zip file to resources. How can I get that path?开发者_开发技巧
The file does not have a path per se. You need to read its contents using the Assembly.GetManifestResourceStream
method. You can read this step by step tutorial.
精彩评论