Is there any way to get a List which contains all \'usings\' within a namespace/class?
List
For instance
using System; using System
You can use Mono Cecil to read a class definition from an assembly and get a list of all the referenced types in each method. From there, you can extract a list of namespaces (fully qualified type name minus the last part).