Answers for "get the path of application in c#3"

C#
1

get application path c#

System.Reflection.Assembly.GetExecutingAssembly().Location
Posted by: Guest on September-11-2020
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

Code answers related to "get the path of application in c#3"

C# Answers by Framework

Browse Popular Code Answers by Language