Answers for "how to get project file path in c#"

C#
0

C# get project directory

string wanted_path = Path.GetDirectoryName(Path.GetDirectoryName(System.IO.Directory.GetCurrentDirectory()));
Posted by: Guest on October-15-2021
0

c# project path

string startupPath = System.IO.Directory.GetCurrentDirectory();

string startupPath = Environment.CurrentDirectory;
Posted by: Guest on March-22-2022

Code answers related to "how to get project file path in c#"

C# Answers by Framework

Browse Popular Code Answers by Language