Answers for "get cmd path 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# windows application get current path

System.IO.Path.GetDirectoryName(Application.ExecutablePath);
Posted by: Guest on March-20-2020

C# Answers by Framework

Browse Popular Code Answers by Language