为什么缓慢读取文件进行搜索会更好?
//if (!read_fields[x] || !ok)
//{
// if (l > 0) Seek(l, SeekOrigin.Current);
// read[x] = null;
// continue;
//}
byte[] bx = new byte[l];
if (l > 0) Read(bx, 0, l);
if (!read_fields[x] || !ok)
{
read[x] = null;
continue;
}
我的速度测试表明搜索非常慢!