Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Keynotfound exception

public int getLastUniqueID()
{
    int lastID = 0;
    IsolatedStorageSettings uc = IsolatedStorageSettings.ApplicationSettings;

    List<sMedication> medicationList = (List<sMedication>)uc["medicationList"];

    foreach (sMedication temp in medicationList) {
        lastID = temp.UniqueID;
    }

    return lastID;
}

It is happening on the following line:

List<sMedication> medicationList = (List<sMedication>)uc["medicationList"];
share|improve this question

2 Answers

up vote 2 down vote accepted

As the error indicate that key was not found in the dictionary before accessing the value check if the key exists or not

if(uc.Contains("medicationList"))
{
   // your code here
}
share|improve this answer

You're going to run into problems with that approach because, if the key "medicationList" isn't there in the retrieved Application Settings, then it'll throw an exception like you have witnessed.

Try the following:

uc.TryGetValue<List<sMedication>>("medicationList", out medicationList)
if (medicationList != null)
{
   foreach(sMedication temp in medicationList)
   {
       lastID = temp.UniqueID;
       return lastID;
   }
}
else
{
   // handle the key not being there
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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