Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created June 20, 2014 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/b64977c112f76b66b9ce to your computer and use it in GitHub Desktop.
Save Fhernd/b64977c112f76b66b9ce to your computer and use it in GitHub Desktop.
Método Dividir sin control de excepciones.
using System;
namespace Articulos.Cap04
{
public sealed class SinControlExcepciones
{
public static int Dividir (int a, int b)
{
// La expresión `a / b` es propensa a generar la
// excepción de división entre cero:
return a / b;
}
public static void Main()
{
int num1 = 7;
int num2 = 0;
Console.WriteLine ("\nLa división de {0} entre {1} es igual a {2}\n", num1, num2, Dividir(num1, num2));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment