5 references to BSTR
System.Private.Windows.Core (5)
Windows.Win32.BSTR.g.cs (4)
31
internal BSTR(IntPtr value):
this
((char*)value)
37
public static explicit operator BSTR(char* value) => new
BSTR
(value);
54
public static explicit operator BSTR(IntPtr value) => new
BSTR
((char*)value.ToPointer());
56
public static explicit operator BSTR(UIntPtr value) => new
BSTR
((char*)value.ToPointer());
Windows\Win32\Foundation\BSTR.cs (1)
13
public BSTR(string? value) :
this
((char*)Marshal.StringToBSTR(value))