Posts by Dalton Garbin • 151 points
5 posts
-
0
votes1
answer496
viewsA: Omnisharp does not start (Visual Studio)
Your version may be outdated. Uninstall and reinstall the C# extension in vscode. Press F1, typhoon ext show installed, Press Enter. Click on C# and then on the button uninstall to remove. Restart…
-
1
votes1
answer527
viewsA: How do I download a file from a private Github repository?
Try this one example: download the file baz of the version 0.1.3 from a private Github repository to the folder /tmp, you would do the following: GITHUB_OAUTH_TOKEN="seu token" fetch…
-
6
votes3
answers1393
viewsA: What do I need to know to work with C#backend?
When it comes to technologies/tools, learn to use: LINQ Entity Framework Fundamentals of SQL GIT HTTP/HTTPS protocol Dependency injection Unit tests / service Object mapping Log framework SOLID…
-
0
votes2
answers137
viewsA: Problem sending data from a console application to Webservice
Hello, here’s an example for you: [WebMethod] public bool IsUserExist(string userName) { if (userName == "Teste") return true; else return false; } protected void Button2_Click(object sender,…
-
2
votes1
answer2942
viewsA: Problems with GCC on Windows 10
Check that the PATH environment variable in Windows contains the mingw bin path set PATH=C:\MinGW\bin;%PATH% Making sure everything went right: digitar gcc -v If the first command does not work, try…