Marshalling an an unmanaged array of strings from a PInvoked OpenFileDialog (GetOpenFileName) - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T12:20:58Zhttp://stackoverflow.com/feeds/question/667049http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/667049/marshalling-an-an-unmanaged-array-of-strings-from-a-pinvoked-openfiledialog-geto0Marshalling an an unmanaged array of strings from a PInvoked OpenFileDialog (GetOpenFileName)Cat2009-03-20T17:00:33Z2009-03-20T17:29:44Z
<p>OpenFileDialog returns a pointer to memory containing a sequence of null-terminated strings, followed by final null to indicate the end of the array.</p>
<p>This is how I'm getting C# strings back from the unmanaged pointer, but I'm sure there must be a safer, more elegant way.</p>
<pre><code> IntPtr unmanagedPtr = // start of the array ...
int offset = 0;
while (true)
{
IntPtr ptr = new IntPtr( unmanagedPtr.ToInt32() + offset );
string name = Marshal.PtrToStringAuto(ptr);
if(string.IsNullOrEmpty(name))
break;
// Hack! (assumes 2 bytes per string character + terminal null)
offset += name.Length * 2 + 2;
}
</code></pre>
http://stackoverflow.com/questions/667049/marshalling-an-an-unmanaged-array-of-strings-from-a-pinvoked-openfiledialog-geto/667151#6671511Answer by Mike for Marshalling an an unmanaged array of strings from a PInvoked OpenFileDialog (GetOpenFileName)Mike2009-03-20T17:29:44Z2009-03-20T17:29:44Z<p>What you're doing looks pretty good - the only change I would make would be to use <code>Encoding.Unicode.GetByteCount(name)</code> instead of <code>name.Length * 2</code> (it's just more obvious what's going on).</p>
<p>Also, you might want to use <code>Marshal.PtrToStringUni(ptr)</code> if you are positive that your unmanaged data is Unicode, as it removes any ambiguity about your string encoding.</p>