标签:
networkComms.net2.3.1开源版本,基于gpl V3协议。因为不能公开3.x版本的源码,所以基于此版本进行学习。3.X版本进行了诸多改进和Bug修复,使用方法上两者相差不大。 /*请注意使用以下代码,需遵循GplV3协议*/ //在英文网站上购买 九折折扣代码: NCDN_PRCLW using System; using System.Collections.Generic; using System.Text; namespace DPSBase { /// <summary> /// 自定义属性 --用来跟踪序列化器和数据处理器 /// </summary> [System.AttributeUsage(AttributeTargets.Class)] public class DataSerializerProcessorAttribute : System.Attribute { /// <summary> /// 一个字节ID /// </summary> public byte Identifier { get; private set; } /// <summary> /// 建立一个属性相关的实例 /// </summary> /// <param name="identifier"></param> public DataSerializerProcessorAttribute(byte identifier) { this.Identifier = identifier; } } } http://www.cnblogs.com/networkcomms http://www.networkcoms.cn 编辑
DataSerializerProcessorAttribute类(NetworkComms 2.3.1源码了解和学习)
标签:
原文地址:http://www.cnblogs.com/networkcomms/p/4256999.html