You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
439 B

3 years ago
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Reflection;
namespace Stone.Common.Biz
{
internal class DllPath
{
internal static string GetDllPath()
{
string AssemblyPath; //当前DLL文件所在的路径
AssemblyPath = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
return AssemblyPath;
}
}
}