ShowCursor

[DllImport("user32.dll", SetLastError = true)]
public static extern int ShowCursor(
   bool bShow
);

Microsoft documentation: Link

Last updated