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;
                }
            }
link|improve this question

67% accept rate
feedback

4 Answers

up vote 9 down vote accepted

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|improve this answer
Many thanks Juri. – Jamie Sep 25 '09 at 10:02
feedback

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

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

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|improve this answer
feedback

Although your problem is solved i need to tell you this, you can just using the CreateSubKey() method for your purpose. I think It's a better choice. :)

//Creates a new subkey or opens an existing subkey for write access.
var ourKey = Registry.CurrentUser.CreateSubKey("Software\\Resources\\Shared");
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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