摘要:
OPC客户端操作主要有4个步骤:1.连接OPC服务器2.创建组和项3.读写数据4.断开服务器连接全部代码:View Code using System;using System.Collections.Generic;using System.Net;using System.Threading;using OPCAutomation;namespace ConsoleOPC{ public class OPCClient { private OPCServer KepServer; private OPCGroups KepGroups; ... 阅读全文