Marshalling an an unmanaged array of strings from a PInvoked OpenFileDialog (GetOpenFileName) - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T12:20:58Z http://stackoverflow.com/feeds/question/667049 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/667049/marshalling-an-an-unmanaged-array-of-strings-from-a-pinvoked-openfiledialog-geto 0 Marshalling an an unmanaged array of strings from a PInvoked OpenFileDialog (GetOpenFileName) Cat 2009-03-20T17:00:33Z 2009-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#667151 1 Answer by Mike for Marshalling an an unmanaged array of strings from a PInvoked OpenFileDialog (GetOpenFileName) Mike 2009-03-20T17:29:44Z 2009-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>