The question is whether platform exceptions (Android and iOS) are automatically converted to c# exceptions. In particular, for iOS I have a method doSomething(some params, NSError** error)
. Does MAUI automatically checks that the error when calling doSomething
and throws exception? For Android my method doSomething
throws java.lang.RuntimeException, can I catch it as a c# exception?