P
Peter Morris
After leaving a working project to work on a website I have now returned to
experience the following exception
private void LoadProducers(string currentFileName)
{
AppDomain.CurrentDomain.AppendPrivatePath(Path.GetDirectoryName(currentFileName)); Assembly producerAssembly = Assembly.LoadFile(currentFileName); foreach (Type currentType in producerAssembly.GetTypes())Unhandled exception at 0x7c812a5b (kernel32.dll) in AlterEgo.exe:0xE0434F4D: 0xe0434f4d. kernel32.dll!RaiseException() + 0x52 bytes [Frames below may be incorrect and/or missing, no symbols loaded forkernel32.dll] mscorwks.dll!GetCLRFunction() + 0x240f8 bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9bb8 bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9c2c bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9c5d bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9c6b bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x1d967 bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x1da8f bytes mscorlib.ni.dll!79423221() mscorlib.ni.dll!794238cd() mscorwks.dll!DllRegisterServerInternal() + 0xa063 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x3433 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x33b4 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x35c9 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x346b bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x35f5 bytes mscorwks.dll!GetCLRFunction() + 0xc77c bytes mscorwks.dll!GetCLRFunction() + 0xd126 bytes mscorwks.dll!_CorExeMain() + 0x14c bytes mscorwks.dll!_CorExeMain() + 0x98 bytes mscoree.dll!_CorExeMain() + 0x30 bytes kernel32.dll!RegisterWaitForInputIdle() + 0x49 bytesWhere do I start in order to find out how to fix this when I don't evenunderstand the problem?
Pete
experience the following exception
private void LoadProducers(string currentFileName)
{
AppDomain.CurrentDomain.AppendPrivatePath(Path.GetDirectoryName(currentFileName)); Assembly producerAssembly = Assembly.LoadFile(currentFileName); foreach (Type currentType in producerAssembly.GetTypes())Unhandled exception at 0x7c812a5b (kernel32.dll) in AlterEgo.exe:0xE0434F4D: 0xe0434f4d. kernel32.dll!RaiseException() + 0x52 bytes [Frames below may be incorrect and/or missing, no symbols loaded forkernel32.dll] mscorwks.dll!GetCLRFunction() + 0x240f8 bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9bb8 bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9c2c bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9c5d bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x9c6b bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x1d967 bytes mscorwks.dll!GetAddrOfContractShutoffFlag() + 0x1da8f bytes mscorlib.ni.dll!79423221() mscorlib.ni.dll!794238cd() mscorwks.dll!DllRegisterServerInternal() + 0xa063 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x3433 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x33b4 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x35c9 bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x346b bytes mscorwks.dll!LogHelp_TerminateOnAssert() + 0x35f5 bytes mscorwks.dll!GetCLRFunction() + 0xc77c bytes mscorwks.dll!GetCLRFunction() + 0xd126 bytes mscorwks.dll!_CorExeMain() + 0x14c bytes mscorwks.dll!_CorExeMain() + 0x98 bytes mscoree.dll!_CorExeMain() + 0x30 bytes kernel32.dll!RegisterWaitForInputIdle() + 0x49 bytesWhere do I start in order to find out how to fix this when I don't evenunderstand the problem?
