Skip to content

Instantly share code, notes, and snippets.

@marciojrtorres
Created August 6, 2013 00:16
Show Gist options
  • Save marciojrtorres/6160851 to your computer and use it in GitHub Desktop.
Save marciojrtorres/6160851 to your computer and use it in GitHub Desktop.
Padrões para nomes de interfaces
interface IPopulacao { // note o prefixo I, de interface
void contar();
}
interface Populacao {
void contar();
}
interface Populavel { // note o sufixo "vel"
void contar();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment