Answers for "get path project c#"

C#
1

get program path c#

using System;
class Program
{
  static void Main(string[] args)
  {
  string path;
  path = AppDomain.CurrentDomain.BaseDirectory;
  }
}
Posted by: Guest on March-03-2021
0

c# project path

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

string startupPath = Environment.CurrentDirectory;
Posted by: Guest on October-11-2020

C# Answers by Framework

Browse Popular Code Answers by Language