码迷,mamicode.com
首页 > 编程语言 > 详细

[转载]pythonnet

时间:2017-10-19 12:48:00      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:运行环境   clr   ack   element   image   reference   sans   4.0   luci   

python与c#的交互模块pythonnet
http://www.cnblogs.com/tester-zhenghan/p/5406521.html

[集成IronPython] 添加CLR对象到运行环境
http://www.cnblogs.com/Cajon/archive/2008/07/28/access_clr_object_in_python.html

 

>>> import clr
>>> import System
>>> print System.Environment.Version
4.0.30319.42000

>>> dllpath=r‘E:\Test.Common.dll‘
>>> a=clr.AddReference(dllpath)
>>> import Test.Common
>>> x=Test.Common.XmlHelper()
>>> b=x.ReplaceElement(‘<XML><test>fff</test><test1>vvvv</test1></XML>‘,‘test‘)
>>> b
u‘<XML>\r\n  <test>**********</test>\r\n  <test1>vvvv</test1>\r\n</XML>‘

[转载]pythonnet

标签:运行环境   clr   ack   element   image   reference   sans   4.0   luci   

原文地址:http://www.cnblogs.com/sui84/p/7691423.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!