Posts by Raul Marciano • 52 points
6 posts
-
0
votes1
answer23
viewsA: Failed to install C# extension in VS Code
The message displayed is a warning that debug will not work, but the extension has been installed successfully! All other functions will function normally. The extension cannot debug into a 32-bit…
-
-1
votes2
answers65
viewsQ: Tostring csharp best practice envelope
I see some programmers choosing to overwrite ToString in C# among some cases, my doubt, it is a bad practice to override this in specific or even depends on the programmer decide? Example: public…
c#asked Raul Marciano 52 -
1
votes1
answer243
viewsQ: Access the Laravel API route 5.7
I’m learning to use Laravel as a Rest API and went to test by Postman a route that returns a string, but I can’t find an error. Returns not found. Address: http://127.0.0.1:8000/api/dot/ <?php…
-
1
votes2
answers682
viewsQ: Extract XML C#tags
I was able to get a tag, but I couldn’t find a way to take a tag that repeats itself and store each repetition in a list. XML example <casa> <porta> <janela>Janela 1</janela>…
-
0
votes2
answers355
viewsA: Extract child tags from an XML
I managed to solve. var retorno = (from nota in xmlRetorno.Elements() where nota.Name.LocalName.Equals("loteDistDFeInt") select nota).FirstOrDefault().Value;…
-
0
votes2
answers355
viewsQ: Extract child tags from an XML
I am consuming a served recipe and it returns me an XML as for example: <retDistDFeInt xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"…