Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save javierguerrero/2d06d65f7ce178d6bb6d750c134bacb9 to your computer and use it in GitHub Desktop.
Save javierguerrero/2d06d65f7ce178d6bb6d750c134bacb9 to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter6_5.cs
try
{
MetodoCritico1();
MetodoCritico2();
MetodoCritico3();
}
catch (Exception ex)
{
Console.WriteLine("Error en el código crítico: " + ex.Message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment