Questions tagged as '.net'

2
answers

Execution calculation error

I have the following question. I have these following times obtained through Stopwatch , where it was placed inside a method to return the bank balance of the employee's hours. But it's showing me a totally contradictory time with what w...
asked by 14.02.2014 / 13:32
1
answer

Making Throttling a method

I was experimenting with the concept of throttling and some doubts arose 1st part: How to translate this concept into a single word? 2nd part: Is there a library that has a simple implementation of this? my attempt can be found at git...
asked by 08.02.2014 / 14:56
1
answer

Verify session size on the server

The following method is used in a web form application to save logged-in user information: public Usuario UsuarioLogado { get { if (Session["Usuario"] != null) return (Usuario)Session["Usuario"]; else...
asked by 19.12.2014 / 15:00
2
answers

Security Exception in UOL Host

I developed an ASP.NET MVC application that runs perfectly on the spot. When I upload it to UOL Host, when I access the page (www.manuelaibi.com.br) I get the error Security Exception ... It's important to note that I have already changed...
asked by 14.09.2018 / 14:50
1
answer

How to split the screen with 2 Open Forms inside an MDI

Good morning, everyone. I have a question about Forms. In my application, I can open 2 forms with grids where they display information from the factory. These Grids are updated every 30 seconds, and are opened with: StartP...
asked by 04.09.2018 / 15:31
0
answers

How to read and successfully process data received by the serial port in Visual .NET?

I have here a arduino that is to detect beats on a line signal audio level. Whenever detected a hit the arduino sends the b character to the serial port. So far I've been able to do it. Now I was trying to make a smal...
asked by 30.11.2018 / 21:37
1
answer

.NET Core + Visual Studio Code - Structure organization

I have some doubts about developing applications in .NET Core using Visual Studio Code: How do I create a base project, such as a blank solution, same in Visual Studio? How to organize a .NET Core project that follows some or all of the DD...
asked by 29.11.2018 / 04:07
1
answer

Problem installing image docker

I am installing an image of the container: microsoft / windowsservercore I'm using the following command to download and install the image: docker pull microsoft/windowsservercore However, it does not finish the installation. After a few...
asked by 05.07.2018 / 19:14
0
answers

Geographical data

What are .NET classes for working with geographic data (latitude, longitude, etc.)? During a search I found the namespace System.Spatial but I saw in a forum someone advised against its use because it is obsolete. Looking at the doc of...
asked by 18.08.2018 / 22:17
5
answers

What is the difference between string vs string?

I'd like to know what the actual difference is between String (upper case s) and string (lowercase s). Apparently the two have the same goals, but which one is "better" to use?     
asked by 01.02.2014 / 11:31