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; } } }