12345678910 |
- using NetCore.NetServerCoreBasic;
- using NetCore.Protocol;
- namespace NetCore.ContentParse;
- public interface IContentParse
- {
- byte[] AssembleByte(byte[] content);
- void ParseByte(byte[] content,IProtocol iProtocol,IContentReceiver contentReceiver);
- }
|