Value cannot be null

VS 2010 reports this warning "Value cannot be null." However, the project seems to be compiling in order. It does not show any other information that shows why this is happening. I am developing a project to run in Microsoft Robotics Studio.

Description: "Value cannot be null"

File: ** dssproxy

How can I find more information about this warning?

Code - 3000+ lines. So I'm not sure if it's worth posting here.

enter image description here

Thanks in advance.

+4
source share
2 answers

Thanks for all the suggestions.

In the end, it was the missing namespace in one of the files that I added as a link. Perhaps that is why dssproxy.exe complained. It was not very obvious that "Value cannot be null."

Could not find out if I did not start from scratch: (.

Thanks again.

+2
source

The problem sometimes arises from adding code for the control to your form, and then removing the control and leaving the code. Try the commneting code this time so that you understand what exactly causes this error.

Check out this link which will discuss the same:

http://social.msdn.microsoft.com/forums/en-US/vsx/thread/dbe2e211-2263-4dee-8e0d-428cabe8119b/

Another possible reason is that you may get this error when creating a component or control on a design surface from a toolbar. The most likely reason is that you are trying to use a component or control that was created for a 64-bit build. Visual Studio development environment does not support 64-bit components.

+1
source

Source: https://habr.com/ru/post/1399685/


All Articles