Posts by Cleiton Adriano Hoffmann • 191 points
2 posts
-
3
votes3
answers106
viewsA: More attributes in Appsettings
Inside the Settings app you can put only Key and Value. Try using several different Ttings. Example: <appSettings> <add key="Nome" value="ValorTeste" /> <add key"Teste" value="Teste"…
-
6
votes8
answers2223
viewsA: Error: not all code paths Return a value
In your method signature, you say it returns a Component list. Try to put the instruction of return outside the if. Code: private List<componente> ObterLista(string nome_componente) {…