Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In C# it es easy to pin an object to the place where it currently is stored using the keyword "fixed". Here is an example from MSDN:

unsafe static void TestMethod()
{

    // assume class Point { public int x, y; }
    // pt is a managed variable, subject to garbage collection.
    Point pt = new Point();

    // Using fixed allows the address of pt members to be
    // taken, and "pins" pt so it isn't relocated.

    fixed (int* p = &pt.x)
    {
        *p = 1;
    }        

}

How can this be done in F#?

share|improve this question
2  
Given that F# has no analogous "unsafe" mode - what would be the point? - Or are you interacting with unmanaged code? – Massif Feb 9 '11 at 14:45
I am using the NativePtr module for manipulating buffers. First I create a block array like this: let structureElement : byte[,] = Array2D.create 5 5 0uy. Then I get a pointer to this Array: let pStructElem = &&structureElement.[0,0] – Adrian H. Feb 9 '11 at 14:55

1 Answer

up vote 9 down vote accepted

you can use GCHandle with type Pinned

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.