WindowsStringHasEmbeddedNull function winrt

int WindowsStringHasEmbeddedNull(
  1. int string,
  2. Pointer<Int32> hasEmbedNull
)

Indicates whether the specified string has embedded null characters.

HRESULT WindowsStringHasEmbeddedNull(
  HSTRING string,
  BOOL    *hasEmbedNull);

Implementation

int WindowsStringHasEmbeddedNull(int string, Pointer<Int32> hasEmbedNull) =>
    _WindowsStringHasEmbeddedNull(string, hasEmbedNull);