5
I have the following method:
public void Contar()
{
int numero = 1;
for (int i = 0; i < 100000; i++)
{
numero *= i
}
return numero
}
Supposing that the method Contar()
take time to lock the UI of my application, as I do to make the asynchronous method?