Last active
December 18, 2015 20:48
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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