I have a C # application and I need to keep in her pictures, but I can not use resources (resx).
Is there then an alternative method?
update:
ANSWER:
My images is static, for this I will use Embedded Resource
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Is this a dynamic set of pictures or static? If static, you can compile the resource file as a separate assembly and then consume it. If dynamic, you need some type of data store to store the files. If file system does not work, a database is an option.