这些是等价的吗?
的OBJ-C:
[commands appendBytes:"\x1b\x1d\x61\x01"
length:sizeof("\x1b\x1d\x61\x01") - 1];
C#:
NSMutableData commands = new NSMutableData ();
commands.AppendBytes (new byte[] {0x1b, 0x1d, 0x61, 0x01});
答案 0 :(得分:3)
据我所知,是的。这两个是等价的。