Hi!
It would be great, if the pinned arrays would be garbage
collectable. This would greatly reduce the amount of copy
back and forth the managed and unmanaged memory.
I cant think of a single reason, why the GC should not allow
this.
It would be also great, if the memory could already be allocated
as pinned:
double[] array= new pinned uninitialized double [500];
where uninitialized would mean that it is not set to zero, thus
saving processing power where GC pressure is high.
Thanks!
Atmapuri
It would be great, if the pinned arrays would be garbage
collectable. This would greatly reduce the amount of copy
back and forth the managed and unmanaged memory.
I cant think of a single reason, why the GC should not allow
this.
It would be also great, if the memory could already be allocated
as pinned:
double[] array= new pinned uninitialized double [500];
where uninitialized would mean that it is not set to zero, thus
saving processing power where GC pressure is high.
Thanks!
Atmapuri
Comment