Skip to content

Instantly share code, notes, and snippets.

@jesuscampos
Created October 12, 2018 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jesuscampos/ee2b82a55f35e19a59128e9e59f9f2a4 to your computer and use it in GitHub Desktop.
Save jesuscampos/ee2b82a55f35e19a59128e9e59f9f2a4 to your computer and use it in GitHub Desktop.
Async3
public class HomeController: Controller
{
public IActionResult GetAsync()
{
var result = DoWork(100);
return View(result);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment