AjaxControlToolkitVsPackage.AjaxControlToolkitVsPackage.GetCurrentAssemblyPath C# (CSharp) Method

GetCurrentAssemblyPath() static private method

static private GetCurrentAssemblyPath ( ) : string
return string
        static string GetCurrentAssemblyPath()
        {
            var path = new Uri(typeof(AjaxControlToolkitVsPackage).Assembly.CodeBase).AbsolutePath;
            path = Uri.UnescapeDataString(path);

            return Path.GetDirectoryName(path);
        }