vote up 1 vote down star

Can the behaviour of pin_ptr be achieved directly in C++/CLI? For example, is it possible to write CLR code directly, something like asm for native apps?

An example of what I would like to do is a wrapper for a pin_ptr (impossible because of the restrictions on pin_ptrs).

class WrappedPtr
{
public:
    explicit WrappedPtr(String^ s)
    {
        pin = PtrToStringChars(s);
        // I want to pin s for the lifetime of this object (only used on the stack)
    }
};
flag

1 Answer

vote up 1 vote down

Use a GCHandle.Alloc. with GCHandleType.Pinned. You can then use GCHandle.AddrOfPinnedObject to get the address of the .NET object.

link|flag
Thanks, I'll give that a go when I get a chance. – James Hopkin Jul 15 at 9:00

Your Answer

Get an OpenID
or

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