Created
March 13, 2019 01:50
-
-
Save matabares/7ec9f4a19e081e14e95e765e0ef64ce3 to your computer and use it in GitHub Desktop.
This file contains 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
void Main() | |
{ | |
for (int i = 0; i < 500; i++) | |
{ | |
try{ | |
Execute(); | |
} | |
catch (Exception e) | |
{ | |
Console.WriteLine($"Hubo un error: {e.Message}"); | |
} | |
} | |
} | |
public void Execute() | |
{ | |
for (int i = 10; i > -1; i--) | |
{ | |
i.Dump(); | |
var z = 3/i; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment