Posts by Willian Zuqui • 31 points
4 posts
-
0
votes2
answers32
viewsA: How to rename an input from a selector?
You must do in the change of the value of select, following example function alterarNomeInput() { const { value } = event.target; const inputAlvo = document.querySelector("#inputAlvo");…
-
0
votes1
answer54
viewsA: C# How do published app use settings I changed in the app.config?
As mentioned, I think it’s best to think of another strategy, because app.config are settings files. But throughout, you must execute the method ConfigurationManager.RefreshSection for the values to…
-
0
votes1
answer85
viewsA: Abstract class to access elements from an object collection
If you are looking to sort a list I recommend using Enublerable.Orderby Example (https://docs.microsoft.com/pt-br/dotnet/api/system.linq.enumerable.orderby?view=netcore-3.1): minhaLista.OrderBy(x…
-
0
votes1
answer171
viewsA: Consuming API with Refit C#
As Anderson Koester has already said, possibly his Data class is in circular reference. It should be something like this example: public class Data { public string id { get; set; } public string…