Randomly named modules

When I debug specific applications (using Visual Studio 2005), I notice that strange, randomly named modules are loading. Names change every time. But they look like a DJ, jnilel-e, lkmjelxl, llufvuwr. The module path always matches the module name. And the timestamp of the module is the load time of the module.

So, it seems that randomly named modules are created and loaded into the application, which sounds pretty scary.

Has anyone seen anything like this? Or can someone give me some tips on how to figure out what it is?

+4
source share
1 answer

You need to upload files to see what they do. These are mainly XML serializers for the types that you serialized in your code, but forgot to create the appropriate XML serializer assemblies. You probably want to use Visual Studio or SGen to create XML serializer assemblies because .Net generates one assembly for each type, and if you have many types, your memory will be wasted and fragmented by these assemblies and their overhead.

+2
source

All Articles