2014-08-27 update 2 Rename Class

This commit is contained in:
parallelbgls@outlook.com
2014-08-27 16:23:47 +08:00
parent abfc5698f4
commit da82933c52
11 changed files with 40 additions and 40 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ModBus.Net
{
public abstract class BaseConnector
{
public abstract bool Connect();
public abstract bool Disconnect();
public abstract bool SendMsgWithoutReturn(byte[] message);
public abstract byte[] SendMsg(byte[] message);
}
}