在C#中獲取應用程序的路徑可以使用Application.ExecutablePath
屬性來獲取,該屬性返回當前正在運行的應用程序的可執行文件的路徑。示例代碼如下:
string appPath = Application.ExecutablePath;
Console.WriteLine("應用程序路徑:" + appPath);
另外,也可以使用Assembly.GetEntryAssembly().Location
來獲取應用程序的路徑。示例代碼如下:
string appPath = Assembly.GetEntryAssembly().Location;
Console.WriteLine("應用程序路徑:" + appPath);
這兩種方法都可以獲取應用程序的路徑,開發者可以根據具體情況選擇適合自己的方法。