I know this is a noob question, but I\'ve worked with Python before and when you wanted to simply access a .txt file for example, all you had to do was make sure the txt fil
Visual Studio sets the working directory to YourProjectDirectory\Debug\Bin when running in debug mode. If your text file is in YourProjectDirectory, you need to account for that difference.
The easiest way to do that is to include your text files in the project and set their build action (in the Properties window) to Content.