Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 18, 2015 20:48
Show Gist options
  • Save Fhernd/5842609 to your computer and use it in GitHub Desktop.
Save Fhernd/5842609 to your computer and use it in GitHub Desktop.
Función que calcula la suma de dos números enteros de manera lenta.
private int FuncionSumaLenta(int a, int b)
{
System.Threading.Thread.Sleep(5000);
return a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment