I need to read in data from a text file that is contained inside of a folder in my solution (It has been added to the solution and is accessible from the Solution Explorer). I know how to access it like this...
_prefixParts = PopulateFromFile(
@"C:\Users\Owner\Desktop\AoW\AoW\AoW\Utility\Names\namePrefix.txt");
Is there a way to write the file path that is local to the solution? I've tried everything that I can think of and haven't managed to do it.
Also, If I were to make that text file an embedded resource, would this even matter?