WindowsTrimStringStart function winrt

int WindowsTrimStringStart(
  1. int string,
  2. int trimString,
  3. Pointer<IntPtr> newString
)

Removes all leading occurrences of a specified set of characters from the source string.

HRESULT WindowsTrimStringStart(
  HSTRING string,
  HSTRING trimString,
  HSTRING *newString
);

Implementation

int WindowsTrimStringStart(
        int string, int trimString, Pointer<IntPtr> newString) =>
    _WindowsTrimStringStart(string, trimString, newString);