Recibo un mensaje de "Código inalcanzable detectado" en Visual Studio en el punto i ++ en mi código a continuación. ¿Puedes ver lo que he hecho mal?C# Código inalcanzable detectado
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;
}
}
Muchas gracias Juri. – Jamie