KitchenPC and Ironpython
问题 I am attempting to work with KitchenPC using IronPython. I am working with the Database Provisioning example here: http://blog.kitchenpc.com/2014/02/11/kitchenpc-database-provisioning-101/ I am successfully referencing and importing all the dlls and their namespaces: import clr clr.AddReference("System") from System import * from System.Reflection import * from System.Reflection import Assembly L4N = Assembly.LoadFrom('C://KitchenPC//DLL//log4net.dll') clr.AddReference(L4N) NU= Assembly