Is it possible to embed an html as a resource and launch it using an external browser in C#? I don’t want to use a webbrowser control just for this html in the project. It is a simple help file, if possible, I would like to embed as a resource, so that I can have a single EXE to deal with.
thanks
Drag and drop the resource html file into your Resources tab, like this:
Then use the following code:
That’s about it…