VB.net Compile Time Error
I am having a problem while compiling one of my projects in vb.net. I have a solution consisting of multiple project,one of which is the exe. Now when i am trying to compile that project i get an error which states
"Error 140 Inv开发者_Python百科alid argument. Length cannot be less than zero. Parameter name: length"
Can anyone please help me. Thankx in advance
To help find the error/which project it is in, you should try building each project separately, starting at the one lowest in your dependency tree and moving towards your exe (assuming this makes sense). This should help you find which project has the problem.
In visual studio you should be able to right click on a project in the solution explorer and tell it to build/rebuild just that one. Also, doing a full clean on the solution (right click the solution and select "Clean Solution") works wonders sometimes.
精彩评论