v6.0.2013.0919 合并数据建模工具、正则测试工具、通讯调试工具、图标水印处理工具
nnhy
authored at
2013-09-19 09:35:11
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; } }
}
}
|