using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace FObjBase
{
public interface IPack
{
byte[] ToBytes();
bool TryParse(byte[] value);
}
public interface IPack2 : IPack
{
bool TryParse(byte[] value, int index, out int cnt);
}
}
-
潘栩锋 authorede0d1a128