Is there a way of getting the assembly name from a namespace string? Eg, get "mscorlib" from "System".
The reason for my question is I'm creating Boo scripts method-by-method and am required to add namespaces programmatically. The resulting string in Boo would read:
import System from mscorlib
I could obviously pass in a collection of import strings, but if I can just pass a list of references, that would be far more scalable!
Many thanks