如何在 xamarin 的 .cs 文件中编写下面提到的 swift 代码?

How to write below mentioned swift code in .cs file for xamarin?

我是 xamarin 和 swift 的新手,我正在创建一个演示,在其中,我必须写下一些 iOS 相关代码,这些代码在下面的代码中提到,但代码是 swift 并且我想将该代码添加到我的 .cs 文件中,以便我可以将它用于我的 UI 页面,但它给出了如下图所示的错误。如果您能指导我并提供我需要编写什么代码以及在哪里编写,那就太好了。

UIApplication.shared.open(redirectUrl, options: [:], completionHandler: { success in
    if success {
        // Handle success.
    } else {
        // Handle failure. Most likely app is not present on the user's device. You can redirect to App Store using these links:
        
    }
})

这应该适合你。我的建议,请参考官方文档。

var param = new NSDictionary();
    UIApplication.SharedApplication.OpenUrl(new NSUrl("https://google.com"), param, (completed) =>
    {
    if (completed)
    {
    }
    else
    {
    }
    });