您可以使用Assembly.GetExecutingAssembly().Location
來獲取當前執行的程序集路徑。示例如下:
using System;
using System.Reflection;
class Program
{
static void Main()
{
string assemblyPath = Assembly.GetExecutingAssembly().Location;
Console.WriteLine("Assembly Path: " + assemblyPath);
}
}
這將打印出當前執行的程序集的路徑。