P p.sunil Oct 28, 2003 #1 How to find the different class names in a name space programatically. sunil
J Jon Skeet [C# MVP] Oct 28, 2003 #2 p.sunil said: How to find the different class names in a name space programatically. Click to expand... Do you know which assemblies you want to search in? If so, for each assembly, get all the types in the assembly, and for each type, check whether or not the namespace matches. You'll need: Assembly.GetTypes() Type.Namespace
p.sunil said: How to find the different class names in a name space programatically. Click to expand... Do you know which assemblies you want to search in? If so, for each assembly, get all the types in the assembly, and for each type, check whether or not the namespace matches. You'll need: Assembly.GetTypes() Type.Namespace