I'm obviously missing something trivial, but I can't seem to import from System.Dynamic; to wit:
import clr
clr.AddReference('System.Dynamic')
which clearly adds the salient reference:
clr.References[2]
(< System.Dynamic, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a>)
but importing fails
import System.Dynamic
results in:
Traceback (most recent call last):
File "", line 1, in
ImportError: No module named Dynamic
What basic thing am I missing?