wei
2020-11-27 e53a1951d6aa07ad22aad9816da4703496fcbccd
HDL_ON/DAL/DriverLayer/Control_TcpClient.cs
@@ -7,10 +7,6 @@
{
    public class Control_TcpClient
    {
        /// <summary>
        /// 通讯ID
        /// </summary>
        public const int msg_id = 1;
        //声明IP,端口,和一个用来连接的Socket
        public string _ip;
@@ -127,18 +123,7 @@
            }
        }
        #region A协议
        /// <summary>
        /// 发送A协议数据
        /// </summary>
        /// <param name="topic"></param>
        public void SendData(string topic)
        {
            string topicString = "Topic:" + topic + "/r/n";
            string lenghtString = "Length:" + "/r/n" + "/r/n";
        }
        #endregion
    }
}