Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从质量中心调用 ac# 代码。XML 文件位于质量中心,我想了解任何驱动程序,代码会将 XML 数据提供给该 c# 代码。预先感谢
您可以通过工作流代码执行此操作:
Set CSharpCode = CreateObject("YourNameSpace.YourStaticClass")
然后在您的 C# 代码中使用这些方法,如下所示:
CSharpCode.YourMethod
您可以将 XML 数据作为参数传递到 C# 端。
在 dll 中,您必须使用属性装饰您正在调用的类[ComVisible(true)]
[ComVisible(true)]
如果您还不熟悉,其中一些操作可能并不那么简单。我建议阅读HP 论坛和TDForum。