Created
November 9, 2024 03:15
-
-
Save javierguerrero/2d06d65f7ce178d6bb6d750c134bacb9 to your computer and use it in GitHub Desktop.
exception_handling_csharp_chapter6_5.cs
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
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