System.GAC.AssemblyCache.GetZapPath C# (CSharp) Method

GetZapPath() public static method

public static GetZapPath ( ) : String
return String
        public static String GetZapPath()
        {
            uint bufferSize = 255;
            StringBuilder buffer = new StringBuilder((int) bufferSize);
            AssemblyCache.GetCachePath(ASM_CACHE_FLAGS.ASM_CACHE_ZAP, buffer, ref bufferSize);
            return buffer.ToString();
        }