Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 18, 2015 22:29
Show Gist options
  • Save Fhernd/5855311 to your computer and use it in GitHub Desktop.
Save Fhernd/5855311 to your computer and use it in GitHub Desktop.
Descripción de la función Suma con mayor grado de detalles.
public double Suma(double valorA, double valorB)
{
double suma = valorA + valorB;
return suma;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment