我正在创建一个应用程序表单来查看/更改来自名为 InTouch 的软件的标签。
我添加了 dll 作为参考,我想Read(string tagName
在 IOM.InTouchDataAccess 中使用 ) fct。VS 在我写的时候看不到 fct Read InTouchWrapper TagType = new read()
。它只看到我在代码中写的 InTouchWrapper,这给了我错误IOM.InTouchDataAccess.InTouchWrapper' does not contain a constructor that takes 0 arguments
我不明白为什么会这样。我在编码时运行 InTouch 软件,可能与软件存在访问冲突。
我的代码
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using IOM.InTouchDataAccess;
namespace TagBrowser
{
public partial class TagBrowser : Form
{
public TagBrowser()
{
InitializeComponent();
}
private void TagBrowser_Load(object sender, EventArgs e)
{
}
private void TagBox_TextChanged(object sender, EventArgs e)
{
}
private void TypeBox_SelectedIndexChanged(object sender, EventArgs e)
{
InTouchWrapper TagType = new InTouchWrapper();
}
dll
using System;
using System.Collections.Generic;
using System.Text;
using NDde.Client;
namespace IOM.InTouchDataAccess
{
public class InTouchDdeWrapper : IDisposable
{
private int DDE_TIMEOUT = 60000;
private DdeClient _ddeClient;
public InTouchDdeWrapper()
{
_ddeClient = new DdeClient("View", "Tagname");
}
~InTouchDdeWrapper()
{
Dispose();
}
public void Initialize()
{
_ddeClient.Connect();
}
public string Read(string tagName)
{
return _ddeClient.Request(tagName, DDE_TIMEOUT).Replace("\0", "");
}