Can a call to Assembly.Load(byte[]) raise the AppDomain.AssemblyResolve event?
问题 Suppose I have a handler for AppDomain.AssemblyResolve event, and in the handler I construct a byte array and invoke the method Assembly.Load(byte[]). Can this method itself cause the AssemblyResolve event to be raised again, and cause my handler to be re-entered? My question is not restricted only to assemblies that can be generated using C# compiler, they can contain abritrary metadata and executable code supported by the CLR. I did some experiments and haven't find any cases when it