![]()
A managed string that holds a copy of the unmanaged string if the value of the ptr parameter is not null; otherwise, this method returns null.
Call this method only on strings that were allocated with the unmanaged SysAllocString and SysAllocStringLen functions.
Marshal.PtrToStringBSTR(IntPtr) is useful for custom marshaling or when mixing managed and unmanaged code. Because this method creates a copy of the unmanaged string's contents, you must free the original string as appropriate. This method provides the opposite functionality of the Marshal.StringToBSTR(string) method.