vote up 2 vote down star
            int x;
        int iHateDataRows = dt.Rows.Count + 2;
        System.Data.DataRow[] dra = new System.Data.DataRow[1000];

        for(x = 0; x < iHateDataRows; ++x)

So, this is obviously a loop but, my problem is that the '++x' tells me that it is unreachable. I don't know if this is just my IDE going crazy or something (I use SharpDevelop, mostly because VS2008 is too clunky and doesn't have neat little features that I like.)

Anywho, I hope I provided enough info for someone to guess at the problem. I have stared at this thing, changed the variables. Everything, it won't budge.

EDIT:

This is after the for loop:

        	if(dra[x].ItemArray[2].ToString() == "0")
        	{
        		return x.ToString();
        	}
        	else
        	{
        		return "Fail";
        	}

I sure hope this code is correct as I never got to test it.

flag
1  
What do you have against datarows? – BFree Jun 18 at 1:59
What is after the for loop? – Vinko Vrsalovic Jun 18 at 2:02
I dunno. I was tired and didn't feel like coming up with a name. – Mashew Jun 18 at 2:02
1  
+1: awesome variable naming – Juliet Jun 18 at 2:05
What is in the for loop? – George Stocker Jun 18 at 2:07

3 Answers

vote up 7 vote down check

You are always returning from the loop before it goes to the next iteration. That is, both halves of the "if" statement return. You never go back to the top of the loop.

link|flag
AH! Silly me. >_> – Mashew Jun 18 at 2:07
vote up 4 vote down

Since either one or the other "if" clause in the loop will be executed, a return is guaranteed to occur, and the loop will never run a second iteration; thus, the increment will never take place.

link|flag
vote up 5 vote down

You probably have a break or return (or, heaven forbid, goto) inside the loop.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.