views:

24

answers:

0

Hi!

Is there any way to search for a Type with only its type name in all application domain on the Compact Framework 2.0? Type.GetType's behavior needs one to specify the assembly name on where to look. BuildManager.GetType does exactly that, but it isn't available for the CF. While this would be fine if I could call AppDomain.CurrentDomain.GetAssemblies() , I can't do that either on the CF.

If there is no better way to solve this, is there any way to intercept the assembly loading process by the main exe, so I could maintain a list of the current assemblies loaded, even those that are directly referenced by my application?

Thanks! Cauê