public new GraphicsBuffer <T> Slice(int start, int length)
        {
            GraphicsBuffer <T> buffer = new GraphicsBuffer <T>(GraphicsDevice, NativeResource);

            buffer.InitializeFromDescription(Description, FirstElement + start, length);

            return(buffer);
        }