增加网络调试工具,可收到数据,未细化处理
Stone authored at 2014-12-24 14:50:05
301.00 B
X_NET20
using System;
using System.Collections.Generic;
using System.Text;

namespace XCom
{
    class DataReceivedEventArgs : EventArgs
    {
        private Byte[] _Data;
        /// <summary>数据</summary>
        public Byte[] Data { get { return _Data; } set { _Data = value; } }
    }
}