using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GeneralGommunication { public interface IModbusServer { void Init(ModbusRegReadWriteHandler regRead, ModbusRegReadWriteHandler regWrite, Action> sendMsg, out Action> recMsg); } public delegate bool ModbusRegReadWriteHandler(int deviceNo, UInt16 regAddr, UInt16[] regValues); }