1

我正在创建一个应用程序表单来查看/更改来自名为 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", "");
        }
4

1 回答 1

1

我把它放在这里以防其他人遇到同样的问题:

您确定这是您引用的正确 dll 吗?尝试在反编译器(JustDecompile freeReflectordotPeek free)中打开准确引用的 dll,看看它是否是您期望的代码。

于 2012-10-03T20:18:09.850 回答