Lstrcmp

[DllImport("Kernel32.dll", CharSet = CharSet.Auto, SetLastError = true)][return: MarshalAs(UnmanagedType.U4)]
public static extern int lstrcmp(string lpString1,
   string lpString2
);

Microsoft documentation: Link

Last updated