CreateAssemblyCache() 공개 정적인 메소드

Use this method as a start for the GAC API
public static CreateAssemblyCache ( ) : IAssemblyCache
리턴 IAssemblyCache
예제 #1
0
        /// <summary>
        /// Use this method as a start for the GAC API
        /// </summary>
        /// <returns>IAssemblyCache COM interface</returns>
        public static IAssemblyCache CreateAssemblyCache()
        {
            IAssemblyCache ac;

            AssemblyCache.CreateAssemblyCache(out ac, 0);

            return(ac);
        }