I am following this tutorial and in it, it says
Be sure to replace YOURASSEMBLY with the actual name of your Assembly.
The line it is referring to is this:
System.IO.Stream src =
Application.GetResourceStream(
new Uri(@"/YOURASSEMBLY;component/" + dbName,
UriKind.Relative)).Stream;
What am I supposed to put here?
You can always find the name of your assembly if you right-click your project, go to properties. On the Application tab, there’s a field called “Assembly name”.
The link to the article doesn’t work, but you should remember to set the file you’re trying to load as an “embedded resource” under “Build action” under properties for the given file.