5 Replies
Try/catch
Handle the exception in the catch
just how? tried it and it didnt worked
Also, don't use .Result
Use await
Calling async code like that is asking for trouble
you can also skip the
(SomeExceptionType e)
but it's not recommended to catch all exceptions, catch the exceptions that you expect to have to handlethanks ❤️