WMI and CSharp (C#): Enumerate all classes from a namespace
March 3rd, 2009
Now that we know how to enumerate all the namespace from root, let’s have a look on how to enumerate all the classes from a namespace.
using System;
using System.Collections.Generic;
using System.Text;
using System.Management;
namespace WmiNamespace
{
class Program
{
static void Main(string[] args)
[...]
Source:WMI and CSharp (C#): Enumerate all classes from a namespace