ICSharpCode.ILSpy.AssemblyList.ClearCache C# (CSharp) Method

ClearCache() private method

private ClearCache ( ) : void
return void
		internal void ClearCache()
		{
			assemblyLookupCache.Clear();
			winRTMetadataLookupCache.Clear();
		}
		

Usage Example

示例#1
0
 public void Dispose()
 {
     if (!disposed)
     {
         disposed = true;
         assemblyLoadDisableCount--;
         // clear the lookup cache since we might have stored the lookups failed due to DisableAssemblyLoad()
         assemblyList.ClearCache();
     }
 }