我想制作一个程序,允许用户在文件中搜索特定的十六进制代码,输出将是偏移量或未找到。我到目前为止的代码是:
namespace search
{
class Program
{
static void Main(string[] args)
{
System.IO.BinaryWriter bw = new BinaryWriter(File.OpenWrite("C:\\1.txt"));
bw.BaseStream.Position = 3;
bw.Write((byte)0x01);
bw.Close();
Console.WriteLine("Wrote the byte 01 at offset 3!");
}
}
}
我在网上到处找,没有发现任何有用的东西,是否可以搜索十六进制代码并输出带有偏移量的输出?
编辑1:
假设我们有这个文件 1.txt 并且在这个偏移量 0x1300 我们有这个十六进制代码 0120 / 0x01 0x20 /“0120”(我不知道如何写它)。打开程序后,它会通过 console.readline 询问您要搜索的十六进制代码,输出将为 0x1300
EDIT2:我的问题类似于这个 VB.Net Get Offset Address 并且它有一个解决方案,但在 vb.net