Posts by Bruno Rodrigues • 87 points
4 posts
-
1
votes1
answer74
viewsQ: Cors error in application dotnet core + React web app
I have an application problem that when I send files via POST and the image is larger in Mb Cors error occurs, images of a few kb work normally. Dotnet core api In the api I already added Cors and…
-
5
votes2
answers391
viewsA: What’s the Where for?
Where is a conditional clause Example: Return first car where the model is 'GOL', you can do a search on Lambda and Linq to understand more about these types of conditions. List<Carro> carros…
c#answered Bruno Rodrigues 87 -
0
votes2
answers3813
viewsQ: How to truncate decimal in X decimal places?
I am using the following code, but when sending ex:'10.100' to 2 houses it returns '10.1', but it should be '10.10' public decimal TruncarDecimal(decimal value, int decimalPlaces) { decimal…
-
1
votes0
answers76
viewsQ: How to write XML string in a tag using Xmlserialize
When I pass the string and Gero through Xmlwritersettings.xmlSerialize passing the data without any specific characters, it still generates in the following way. Briefly, I have an xml document…