vote up 0 vote down star

Hi all,

I'm getting a "Unreachable code detected" message in Visual Studio at the point i++ in my code below. Can you spot what I've done wrong?

Thanks

 try
            {
                RegistryKey OurKey = Registry.CurrentUser;
                OurKey.CreateSubKey("Software\\Resources\\Shared");
                OurKey = OurKey.OpenSubKey("Software\\Resources\\Shared", true);
                for (int i = 0; i < cmbPaths.Items.Count; i++) //<---- problem with i
                {
                    OurKey.SetValue("paths" + i, cmbPaths.Items[i]);
                    break;
                }
            }
flag

3 Answers

vote up 7 vote down check

The problem is that this actually isn't a loop. You don't have any condition on the break so you could equivalently write something like

if(cmbPath.Items.Count > 0)
{
   OurKey.SetValue("paths" + 0, cmbPaths.Items[0]);
}

Alternatively you have to correct with something like

for (int i = 0; i < cmbPaths.Items.Count; i++) 
{
   OurKey.SetValue("paths" + i, cmbPaths.Items[i]);

   if(someConditionHolds)
      break;
}
link|flag
Many thanks Juri. – Jamie Sep 25 at 10:02
vote up 1 vote down

The problem is that because you break; in the loop with no chance of it doing anything else, the increment of i (i++) will never be reached.

Kindness,

Dan

link|flag
vote up 6 vote down

You're breaking out of the loop before the end of the first iteration.

link|flag
Thanks, could you show me how I shoudl rewrite it? – Jamie Sep 25 at 9:59
just showed it. – Juri Sep 25 at 10:01
just delete the line that says break; – wefwfwefwe Sep 25 at 10:01

Your Answer

Get an OpenID
or

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