WindowsCompareStringOrdinal function winrt

int WindowsCompareStringOrdinal(
  1. int string1,
  2. int string2,
  3. Pointer<Int32> result
)

Compares two specified HSTRING objects and returns an integer that indicates their relative position in a sort order.

HRESULT WindowsCompareStringOrdinal(
  HSTRING string1,
  HSTRING string2,
  INT32   *result
);

Implementation

int WindowsCompareStringOrdinal(
        int string1, int string2, Pointer<Int32> result) =>
    _WindowsCompareStringOrdinal(string1, string2, result);