What happens to the name/value pairs stored inside a form's resx file? Are they compiled into the binary when I compile my project?
For my particular project, I would like the ability to edit one of these values manually without recompiling (app.config-style), is there a simple way to do this?
EDIT: Some people seem to not be getting my question. When doing WinForms, if the set-up inside of InitializeComponents() depends on the form's resource file, simply setting the build action to copy always and the content type to content breaks the form. I am sure that there is a simple solution, but not having worked with resource files before am confused as to what it would be.