Using * as extension filter in a OpenFileDialog on MacOS display the dialog, display the files but we can't select any file. Of course, if we don't want to filter, we should avoid using it but on ...
private async void Open () { var openDialog = new OpenFileDialog(); openDialog.Title = "Test"; openDialog.AllowMultiple = false; var files = await openDialog ...