我不断收到此错误
Dev_xsc_Build.BigEndianBinaryReader.ReadInt16()': no suitable method found to override
但我不确定我哪里出错了
public override short ReadInt16()
{
byte[] byteBuffer = base.ReadBytes(2);
return (short)((byteBuffer[0] << 8) | byteBuffer[1]);
}
请问有什么帮助吗?