I have a Int[][] jagged array, and I want to convert it to Double[][] jagged array. Of course I don't want to change the value inside the array for example:
Int[][]
Double[][]
int[2][1] = 10
and when it converted to double,
So i have value[][] which is type is integer. and i want to convert it to double.