Dev2.Reflection.GAC.CreateAssemblyCache C# (CSharp) 메소드

CreateAssemblyCache() 공개 정적인 메소드

Use this method as a start for the GAC API
public static CreateAssemblyCache ( ) : IAssemblyCache
리턴 IAssemblyCache
        public static IAssemblyCache CreateAssemblyCache()
        {
            IAssemblyCache ac;

            GAC.CreateAssemblyCache(out ac, 0);

            return ac;
        }

Same methods

GAC::CreateAssemblyCache ( IAssemblyCache &ppAsmCache, uint dwReserved ) : void

Usage Example

예제 #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);
        }