Hi,
Is there any trick to use Device.StartTimer with async?
Device.StartTimer(TimeSpan.FromMinutes(1), async () =>
{
await DisplayAlert("","","");
}
It doesn't compile: Cannot convert async lambda to delegate type Func
Any help?
Hi,
Is there any trick to use Device.StartTimer with async?
Device.StartTimer(TimeSpan.FromMinutes(1), async () =>
{
await DisplayAlert("","","");
}
It doesn't compile: Cannot convert async lambda to delegate type Func
Any help?