If I have a .Net class that is not part of any namespace then I\'m not able to use it in ironpython.
Here is an example
Suppose I have a assembly FooLib.dll
You have to use a bare import like so:
import
import clr clr.AddReference("FooLib") # This call succeeds. import Foo f = Foo()