I have a .NET console application (.NETFramework v.4.8) that reads a CSV file in the root of my project.
File.ReadAllLines("fuel.csv");
When I run my program, I get the following error:
System.IO.FileNotFoundException: Could not find file
"/Users/ryan.payne/Sites/linq-fundamentals/LinqFundamentals/Cars/bin/Debug/fuel.csv"
How do I get my console application to read the file?