I added image as file and set type as resource (see screenshot)
How do I pull it out as byte array without using resx files, etc?

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.
The process is described in How to embed and access resources by using Visual C#.
Essentially it requires use of reflection, using the
Assemblyclass.See How to convert an Stream into a byte[] in C#? for details of how to get a
byte[]from aStream.