Skip to content

Instantly share code, notes, and snippets.

@matabares
Created March 13, 2019 01:50
Show Gist options
  • Save matabares/7ec9f4a19e081e14e95e765e0ef64ce3 to your computer and use it in GitHub Desktop.
Save matabares/7ec9f4a19e081e14e95e765e0ef64ce3 to your computer and use it in GitHub Desktop.
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