Windows.Win32.System.WinRT.HSTRING
A handle to a Windows Runtime string.
namespace Windows.Win32.System.WinRT
{
internal readonly struct HSTRING : IEquatable<HSTRING>
{
public unsafe static implicit operator void*(HSTRING value);
public unsafe static explicit operator HSTRING(void* value);
public static bool operator ==(HSTRING left, HSTRING right);
public static bool operator !=(HSTRING left, HSTRING right);
public bool Equals(HSTRING other);
public static implicit operator IntPtr(HSTRING value);
public static explicit operator HSTRING(IntPtr value);
public static explicit operator HSTRING(UIntPtr value);
}
}