Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用二进制编写器,我想将 0 写入文件,我正在做:
_writer.Write(0)
但是当我希望它执行字节时,它正在向文件写入一个整数,不只是将字节变量声明为0,正确的方法是什么?
_writer.Write(CByte(0))应该做的伎俩。
_writer.Write(CByte(0))