मुझे नीचे दिए गए मेरे कोड में बिंदु i ++ पर विजुअल स्टूडियो में "पहुंचने योग्य कोड का पता चला" संदेश मिल रहा है। क्या आप स्पॉट कर सकते हैं जो मैंने गलत किया है?सी # पहुंचने योग्य कोड का पता चला
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;
}
}
बहुत धन्यवाद जूरी। – Jamie