Avoid internal classes in the Type.GetMembers()
How can I avoid internal classes when using :
Assembly asm = Assembly.Load(SomeAssembly);
Type[] types = asm.GetTypes();
Is there a way to check if the type is an internal class ?
Thanks,
Aditya
How can I avoid internal classes when using :
Assembly asm = Assembly.Load(SomeAssembly);
Type[] types = asm.GetTypes();
Is there a way to check if the type is an internal class ?
Thanks,
Aditya