I am using Xamarin.iOS and I am working with NSAttributeString.
I need to know if a link attribute contains an URL.
I found a Swift code to do that: if let url = value as? URL but I don't know what C# class represent 'URL'.
From what I can understand URL and NSUrl are different, so I cannot use the latter. It there a naming pattern for those Swift structures?