我正在寻找一种方法来重新解释byte []类型的数组作为一个不同的类型,比如short [].在C++中,这可以通过简单的转换实现,但在C#中,我没有找到实现这一目的的方法,而不需要复制整个缓冲区.
有任何想法吗?
你可以做到这一点,但这是一个相对糟糕的主意.像这样的原始内存访问不是类型安全的,只能在完全信任的安全环境下完成.您绝不应该在设计合理的托管应用程序中执行此操作.如果您的数据伪装成两种不同的形式,那么您实际上可能有两个独立的数据集?
无论如何,这里有一个快速简单的代码片段来完成你的要求:
byte[] bytes = new byte[] { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; int byteCount = bytes.Length; unsafe { // By using the fixed keyword, we fix the array in a static memory location. // Otherwise, the garbage collector might move it while we are still using it! fixed (byte* bytePointer = bytes) { short* shortPointer = (short*)bytePointer; for (int index = 0; index < byteCount / 2; index++) { Console.WriteLine("Short {0}: {1}", index, shortPointer[index]); } } }