如何在 Visual Studio 中使用 IronPython 应用程序中的 C# 类库?

发布于 2024-11-13 07:35:06 字数 396 浏览 4 评论 0原文

我是 Visual Studio 的新用户,我试图弄清楚如何从同一解决方案中的 IronPython 项目加载作为解决方案一部分构建的 C# 类库。

基本上,我正在尝试执行中的场景在 Visual Studio 中调试类库,但使用 IronPython 脚本而不是控制台应用程序。

通常在解决方案之外我会使用:

import clr
clr.AddReferenceToFile(fname)

我应该为 fname 添加什么?

I am a new user of Visual Studio, and I am trying to figure out how to load a C# class library built as part of a solution from an IronPython project in the same solution.

Basically, I am trying to do the scenario in How to debug a class library in Visual Studio but using an IronPython script instead of the console application.

Normally outside a solution I would use:

import clr
clr.AddReferenceToFile(fname)

What should I put in for fname?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千柳 2024-11-20 07:35:06

您可以配置 SearchPath 目录

在此处输入图像描述

然后:

clr.AddReference("NameOfAssembly")

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

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

这是一篇 博客文章 描述IronPython 中加载程序集的不同函数。

You could configure the SearchPath directory

enter image description here

and then:

clr.AddReference("NameOfAssembly")

or you could also specify the full path:

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

Here's a blog post describing the different functions for loading assemblies in IronPython.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文