Arvis

Results 7 comments of Arvis

Agree that this is expected behaviour of `async void`. In general the guideline is to `avoid async` void **except when used in an event handler**. [Should I avoid 'async void'...

Things gets more complicated when we use async lambdas. Practically it's the same async void problem but more hidden! As we know async lambdas could return void or Task. Consider...

I'm not consider it as a bug, it just a way it is - there are exceptions we just can't handle in aspect. [WsnAspectTest.zip](https://github.com/ArxOne/MrAdvice/files/1272130/WsnAspectTest.zip)

Issue seems to happen only with reference type positional parameters of a record type. Only workaround I found is refactor its to required init properties: ``` public record TourInfo(int Id,...

It is not possible to SignIn with sync again after LogOut in same app session. Always got exeption: `Realms.Exceptions.RealmMismatchedConfigException: Realm at path '' already opened with different sync user.`

You mean checking not unchecking the 'Project properties -> Build -> Advanced -> Do not reference mscorlib.dll' option.

Despite the fact that project now compile just fine, VS2010 pick up the wrong version of mscorlib.dll (framevork 4.0 in my case) not the MonoTouch one!?