B
brett
Sometimes when I right click on a variable and select go to definition,
I get a message that VS.NET 2003 cannot navigate to variable. For
example, if you paste the following code into an empty class file and
right click on, strcomposedmessageid, you'll get the error:
private void doRequests(FileInfo[] fileInfo)
{
string strcomposedmessageid="";
try
{
if(stopProcess)
{
return;
}
int totalMessages=fileInfo.Length;
int loops= totalMessages/maxMessages;
int remainder=totalMessages - maxMessages*loops;
int j=0;
if(remainder>0)
{loops++;}
if(totalMessages>0)
{
for (j=0;j<loops;j++)
{
strcomposedmessageid="";
Note: the code itself will not run as I have scaled it down
significantly for this post.
Thanks,
Brett
I get a message that VS.NET 2003 cannot navigate to variable. For
example, if you paste the following code into an empty class file and
right click on, strcomposedmessageid, you'll get the error:
private void doRequests(FileInfo[] fileInfo)
{
string strcomposedmessageid="";
try
{
if(stopProcess)
{
return;
}
int totalMessages=fileInfo.Length;
int loops= totalMessages/maxMessages;
int remainder=totalMessages - maxMessages*loops;
int j=0;
if(remainder>0)
{loops++;}
if(totalMessages>0)
{
for (j=0;j<loops;j++)
{
strcomposedmessageid="";
Note: the code itself will not run as I have scaled it down
significantly for this post.
Thanks,
Brett