CreateAssemblyCache() public static method

Use this method as a start for the GAC API
public static CreateAssemblyCache ( ) : IAssemblyCache
return IAssemblyCache
示例#1
0
文件: GAC.cs 项目: kapiya/Warewolf
        /// <summary>
        /// Use this method as a start for the GAC API
        /// </summary>
        /// <returns>IAssemblyCache COM interface</returns>
        public static IAssemblyCache CreateAssemblyCache()
        {
            IAssemblyCache ac;

            GAC.CreateAssemblyCache(out ac, 0);

            return(ac);
        }