kitchenpc

KitchenPC and Ironpython

冷暖自知 提交于 2019-12-24 04:03:18
问题 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

KitchenPC and Ironpython

青春壹個敷衍的年華 提交于 2019-12-24 04:03:08
问题 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