Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Last active December 25, 2015 17:59
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/7017323 to your computer and use it in GitHub Desktop.
Save Fhernd/7017323 to your computer and use it in GitHub Desktop.
Clase Utilidades que demuestra la declaración de una clase estática.
public static class Utilidades
{
public static int Errores = 0;
public static bool EmailValido (string email)
{
// implementación de lógica del método estático
}
public static string CalcularHash (string file)
{
// implementación de lógica del método estático
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment