Hi,
I don't know if there is an easier way to do this, but the brute force way is to
list all the types in the assembly, go through each type, and use the Namespace
property of the type to compare against your target.
foreach (Type type in myAssembly.GetTypes())
{
if (type.Namespace == target)
{
...
}
}
where myAssembly is the assembly you want to check. If you only want classes,
use the Type's IsClass property as part of the check.