我希望我的程序读取二进制文件的十六进制值并计算出现的“45”,现在停留在计数字节模式上。
public static byte[] GetOccurrence(string dump)
{
using (BinaryReader b = new BinaryReader(new FileStream(dump, FileMode.Open)))
{
bufferB = new byte[32];
b.BaseStream.Seek(0x000000, SeekOrigin.Begin);
b.Read(bufferB, 0, 32);
return bufferB;
}
}
bufferA = GetOccurrence(textOpen.Text); // textOpen.Text is the opened file
// bufferA now stores 53 4F 4E 59 20 43 4F 4D 50 55 54 45 52 20 45 4E 54 45 52 54 41 49 4E 4D 45 4E 54 20 49 4E 43 2E
// trying to count occurrence of '45' and display the total occurrence in textbox
泛舟湖上清波郎朗
相关分类