BASS.NET API for the Un4seen BASS Audio Library

UtilsIntPtrAsStringUnicode Method (IntPtr, Int32)

BASS.NET API for the Un4seen BASS Audio Library
Translates an IntPtr into a .NET managed string.

Sometime BASS returns an IntPtr which actually represents a pointer to a memory block containing a null-terminated Unicode *char (string, 16-bit). This method does this translation for you and returns the actual string.

Namespace:  Un4seen.Bass
Assembly:  Bass.Net (in Bass.Net.dll) Version: 2.4.17.5
Syntax

public static string IntPtrAsStringUnicode(
	IntPtr unicodePtr,
	int len
)

Parameters

unicodePtr
Type: SystemIntPtr
The IntPtr which represents the address of the first character of the unmanaged *char (string, 16-bit).
len
Type: SystemInt32
The number of bytes to decode.

Return Value

Type: String
The translated unicode string.
Remarks

This method actually expands the original chars to unicode 16-bit chars as required by .NET (since here each string a unicode ;-).
See Also

Reference