博文

目前显示的是 七月, 2019的博文

unsafe C#

        unsafe void ShowBytes(byte* start, int len)         {             for (int i = 0; i < len; i++)             {                 Console.Write("{0}", start[i].ToString("X2"));             }             Console.WriteLine();         }         unsafe void ShowShort(short x)         {             ShowBytes((byte*)&x, sizeof(short));         }         unsafe void ShowShort(int x)         {             ShowBytes((byte*)&x, sizeof(int));         }         unsafe void ShowShort(uint x)         {         ...