“asynchrone” Réponses codées

asynchrone

// simple method structure
public static  Task<int> FooAsync(int num)
{
   num+=5;
   return Task.FromResult(num);
}
// calling function structure
public static async void Solve()
{
    var temp = await FooAsync(i);
}
PrashantUnity

Async attend

async function f() {

  try {
    let response = await fetch('/no-user-here');
    let user = await response.json();
  } catch(err) {
    // catches errors both in fetch and response.json
    alert(err);
  }
}

f();
Yawning Yak

Réponses similaires à “asynchrone”

Questions similaires à “asynchrone”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code