vote up 0 vote down star

If I try a marshal a string that is really a NULL pointer, what will happen?

flag

1  
I dunno. Try it and tell us. – JoshJordan Aug 17 at 2:32
Yeah I'm in the middle of a messy Interop conversion right now, going to be another hour before I get it compiling, want to know without having to spend a bunch of time testing in a seperate project. – DevDevDev Aug 17 at 2:35

4 Answers

vote up 2 vote down check

From native to managed, you get a null string object. From managed to native, you get a null pointer. It's fairly intuitive. :-)

link|flag
Cool that's what I was hoping for. You get the null string not the empty string and definitely not an error? – DevDevDev Aug 17 at 2:41
Yeah, that's right. – Ben M Aug 17 at 3:43
vote up 1 vote down

A NULL value when typed as a string will be translated to the respective language representation of NULL when marshalled in either direction (NULL for C and null for C#)

link|flag
vote up 0 vote down

I imagine it will pass NULL to the underlying API, which may or may not be acceptable input, depending on what you're calling. Most decently designed C(++) code checks for that sort of thing, but it's best to double check.

link|flag
vote up -1 vote down

Well what do you think ? LPstr is A pointer to a null-terminated array of ANSI characters. NULL is obviously not a pointer to a null terminated array. It will probably try to read from NULL, or something. In any case its undefined behavior, it will crash your app or leave it in unknown state. Why do you want that ? why not just check before mashalling it ?

link|flag
How can I check an attribute? then I will need to marshal an IntPtr. – DevDevDev Aug 17 at 2:37

Your Answer

Get an OpenID
or

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