i have add zip file to resources how can i get that path ?
+1
A:
In Winforms:
YOUR_NAMESPACE.Properties.Resources.YOUR_RESOURCE_NAME;
Kamyar
2010-10-19 16:02:52
+1
A:
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.
klausbyskov
2010-10-19 16:05:06