“$”是什么意思? Delphi中数字前面的意思是什么?

发布于 2024-12-21 17:09:46 字数 210 浏览 1 评论 0原文

我正在尝试将 Delphi 代码转换为 vb.net,但我不确定这一行:

stream.Seek($42, soFromBeginning);

我熟悉在文件流上使用搜索(在 vb.net 中),但我不确定 $42< /代码>。

我假设它对应于一个位置,但是它如何转换为 vb.net?

I'm trying to convert Delphi code to vb.net and I'm not sure about this line:

stream.Seek($42, soFromBeginning);

I'm familiar with using seek on filestreams (in vb.net) but I'm not sure about the $42.

I'm assuming that corresponds to a position, but how does that translate to vb.net?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓬勃野心 2024-12-28 17:09:46

$ 是十六进制常量的前缀。在 VB.NET 中,它是 &H,因此您可以编写 &H42。

$ is the prefix for a hexadecimal constant. In VB.NET, that's &H, so you would write &H42.

葬花如无物 2024-12-28 17:09:46

VB.net 所需的代码几乎相同:

stream.Seek(&H42, SeekOrigin.Begin)

这里需要注意的是:

  • Delphi 中的$ 是十六进制的前缀。
  • soFromBeginning 对应于SeekOrigin.Begin

The code required for VB.net is almost identical:

stream.Seek(&H42, SeekOrigin.Begin)

The points of note here are:

  • $ in Delphi is the prefix for hexadecimal.
  • The soFromBeginning corresponds to SeekOrigin.Begin.
冷︶言冷语的世界 2024-12-28 17:09:46

$42 值是距流开头的偏移量。

在 VB.NET 中,这将是:

reader.BaseStream.Seek(66, IO.SeekOrigin.Begin)

The $42 value is the offset from the beginning of the stream.

In VB.NET that would be :

reader.BaseStream.Seek(66, IO.SeekOrigin.Begin)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文