Enumerting Type out of an Assembly through unmanaged API

  • Thread starter Thread starter Tom
  • Start date Start date
T

Tom

Given a path to an assembly in unmanaged code does anyone know of a
way to load the assembly and enumerate out the types as strings using
the mscorlib API? Thanks in advance

Tom
 
Given a path to an assembly in unmanaged code does anyone know of a
way to load the assembly and enumerate out the types as strings using
the mscorlib API? Thanks in advance

There's a COM based unmanaged metadata API that you can use for this
(it has nothing to do with Mscorlib though). You can find samples and
documentation for it in the .NET SDK Tool Developer's Guide directory.



Mattias
 
Back
Top