C# 字节数组 到 结构体的强制转换 及解引用相关问题

class Program
    {
        ///
        /// 分布式对象存储节点,可存储在内存或文件上。
        ///

        ///
        static unsafe void Main(string[] args)
        {
            
            CommandHead theCH;
            byte[] Buffer = new byte[]{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1 };
            fixed (byte* pt = Buffer)
            {
                CommandHead* cHP = (CommandHead*)(pt);
                theCH = *(cHP);
            }


            Console.WriteLine(theCH.faceID);
            Console.WriteLine(theCH.seriID);


            for (int i = 0; i < Buffer.Length; i++)
            {
                Buffer[i] = 2;
            }


            Console.WriteLine(theCH.faceID);
            Console.WriteLine(theCH.seriID);


            Console.ReadKey();
        }

    }



[StructLayout(LayoutKind.Sequential, Pack = 1)]
    struct CommandHead
    {
        public ushort seriID;
        public ushort faceID;
        public uint targetID;
    }



经测试C#的解引用操作 有复制操作,所以,安全性可以保证。


你可能感兴趣的:(技术)