Possible Duplicate:
Converting from a jagged array to double pointer in C#
I wanna convert array to pointer in c#.
double[] array;
//input something
fixed (double* pt = array) {
//.....
It successed. But I want to use it like this
How can I use double pointer?
double[][] array;
//...
fixed (double** pt = array) {
//...
when I convert it to double pointer, it doesn`t worked. How can I use double pointer?
(added) I already used "unsafe" at class like this
unsafe class Class1 {
and first example (using single pointer) was done well. I wanna use double pointer