I want to convert an array of type System.Array to Double() or Double(,) (I already know which one to convert to). The problematic lines of code follow
Dim kernel As Double() = CType(Array.CreateInstance(GetType(Double), _
{2 * limit + 1}, {-limit}), Double())
Where limit is predefined as a valid, positive Integer. I get the InvalidCastException. How do I go about doing this? Or another way of creating a Double array with < 0 starting index?