update 2014-07-31

This commit is contained in:
parallelbgls
2014-07-31 17:08:48 +08:00
parent d98668c3c2
commit 1f760b6802
7 changed files with 631 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
namespace ModBus.Net
{
public abstract class ProtocalLinker
{
public abstract byte[] SendReceive(byte[] content);
public abstract bool SendOnly(byte[] content);
}
}