Allocates a BSTR and copies the contents of a managed System.Security.SecureString object into it.
The address, in unmanaged memory, where the s parameter was copied to, or 0 if a null object was supplied.
The Marshal.SecureStringToBSTR(System.Security.SecureString) method is useful for custom marshaling or when mixing managed and unmanaged code. Because this method allocates the unmanaged memory required for a string, always free the BSTR when finished by calling the Marshal.ZeroFreeBSTR(IntPtr) method.