dll路径

      技术文档 2006-6-23 12:5

 读取dll自身的路径

  /**//// <summary>
        /// 获取Assembly的运行路径
        /// </summary>
        /// <returns></returns>
        private string GetAssemblyPath()
        {
            string _CodeBase = System.Reflection.Assembly.GetExecutingAssembly().CodeBase ;

            _CodeBase = _CodeBase.Substring(8,_CodeBase.Length - 8);    // 8是 file:// 的长度

            string[] arrSection = _CodeBase.Split(new char[]{’/’});
            
            string _FolderPath = "";
            for(int i=0;i<arrSection.Length-1;i++) 
            {
                _FolderPath += arrSection[i] + "/";
            }

            return _FolderPath;
        }

标签集:TAGS:
回复Comments() 点击Count()

回复Comments

{commenttime}{commentauthor}

{CommentUrl}
{commentcontent}