I saw that one sealed class is generated for an async/await method. Is it correct that if I have method in a loop like below, Will it create 200 objects for me?
 public async void M() {
    int i=0;
    while(i<100)
    {
        await Method1();            
        await Method2();
        i++;
    }
}
  public async Task Method1() {
      await Task.Delay(10);
  }
 public async Task Method2() {
      await Task.Delay(10);
  }