我正在尝试创建一个我的vbscript可以与之交互的C#dll。但是,当我尝试实例化对象时出现错误:“无法找到服务器”
这是我的C#代码:
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly:System.CLSCompliant(true)]
[assembly: ComVisible(true)]
[assembly:Guid("a22f4018-8f32-4c02-a748-6701fb617aa3")]
namespace InteropTesting
{
[Guid("a22f4018-8f32-4c02-a748-6701fb617aa3")]
public class TestReply
{
public string salutation;
public string name;
public string time;
}
[Guid("a22f4018-8f32-4c02-a748-6701fb617aa3")]
public class TestObj
{
public TestObj() { }
public TestReply SayHello(string addressee)
{
return SayHello(addressee, "hello");
}
public TestReply SayHello(string addressee, string greeting)
{
string x = String.Format("{0}, {1}!", greeting, addressee);
Console.WriteLine("{0}", x);
TestReply r = new TestReply
{
salutation = greeting,
name = addressee,
time = System.DateTime.Now.ToString("u")
};
return r;
}
}
}
这是我的vbscript:
Sub Main
Dim obj
Dim reply
Set obj = CreateObject("InteropTesting.TestObj")
Set reply = obj.SayHello("Evgeny")
Debug.Print "Reply at: " & reply.Time
Set reply = obj.SayHello_2("Evgeny", "wassup")
Debug.Print "Reply at: " & reply.Time
End Sub
我使用Visual Studio“Signing”属性创建了SNK,然后从Visual Studio命令提示符运行以下命令:
csc.exe / t:library / debug + /keyfile:InteropTesting.snk/out:InteropTesting。 dll Program.cs
我不确定我做错了什么。
答案 0 :(得分:1)
要使用COM组件,它必须是registered。这样系统就知道在哪里可以找到特定组件的代码,
此外,您需要为程序集,每个接口和每个类使用不同的GUID。 GUID用于唯一 COM类,接口和类型库(大致是.NET程序集的COM等价物)。并且只需更改一个"数字"即可手动创建GUID。 Visual Studio在"工具"中包含GUID Generator。菜单将为您生成唯一的GUID。