1.
int* numPtr = (int*) stackalloc byte[(4 * 4)];2.错误提示:指针和固定大小缓冲区只能在不安全的上下文中使用。
        public void* VoidStar
        {
            get
            {
                if (this.disposed)
                {
                    throw new ObjectDisposedException("MemoryBlock");
                }
                return this.voidStar;
            }
        }