I\'m trying to use an embedded resource in a console application, but apparently console applications don\'t come with a resource file automatically. How do I create a reso
I added the answer in my answer to your previous question:
Right-Click on 'test' in Solution Explorer -> Add -> New Item -> Resources File
Then double-click on the created file (e.g. Resource1.resx), and take it from there.
Then use it:
string s = Resource1.String1;