gpt4 book ai didi

.net - 如何在我的网络应用程序中添加 exe 作为引用

转载 作者:行者123 更新时间:2023-12-05 01:48:55 25 4
gpt4 key购买 nike

我已经创建了一个包含一些方法的 exe(引用下面的示例 exe)。

using System;  
using System.Collections.Generic;
using System.Text;

namespace SampleRef
{
public class Program
{
static void Main(string[] args)
{
}
}
public class Sample
{
public Sample(int count)
{

}

public string SampleString(int InputValue)
{
//Do something
return "<the result>";
}
}
}

我想将此 exe 的引用添加到我的 Web 应用程序中以调用 exe 中的 (SampleString) 方法。在 .net 中有可能吗?我该如何实现?

最佳答案

是的 - 只需将其添加为类库即可。自 2005 年以来,Visual Studio 一直支持这一点。

编辑:好的,听起来 ASP.NET 可能不喜欢 .exe 程序集:(

在这种情况下,我建议您从当前的可执行文件中提取代码并将其放入类库中。您可能会发现将整个 普通应用程序更改为 DLL 更容易 - 只需添加另一个可执行项目,该项目除了调用 DLL 以启动“应用程序”外什么都不做。这不应该是代码的终点,但它是启动和运行的简单方法。

关于.net - 如何在我的网络应用程序中添加 exe 作为引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3132150/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com