2011-06-03 52 views
1

我是Visual Studio的新用戶,我想弄清楚如何在同一解決方案中加載作爲IronPython項目解決方案一部分構建的C#類庫。如何在Visual Studio中使用IronPython應用程序中的C#類庫?

基本上,我試圖做How to debug a class library in Visual Studio的情況,但使用IronPython腳本而不是控制檯應用程序。

通常的解決方案外,我會用:

import clr 
clr.AddReferenceToFile(fname) 

我應該把爲fname

回答

2

您可以配置SearchPath目錄

enter image description here

然後:

clr.AddReference("NameOfAssembly") 

,或者您也可以指定完整路徑:

clr.AddReferenceToFileAndPath(@"c:\work\someproject\bin\debug\NameOfAssembly.dll") 

這裏有一個blog post描述DIFF用於在IronPython中加載程序集的函數。

相關問題