Created
November 8, 2012 23:37
-
-
Save MayogaX/4042628 to your computer and use it in GitHub Desktop.
Exemplo de popular lista
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
| private List<T> PopulaMinhaLista(List<T> lista) | |
| { | |
| MinhaClasse minha = new MinhaClasse(); | |
| minha.propriedade = “valor em string aê"; | |
| minha.total = 666; | |
| lista.Add(minha); | |
| return lista; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment