how do I code exception if my Index is empty?
I meant if the index is empty and I want to notified the users that "There are no data in your selection" otherwise the code will pull data out.
currently my code is reading data from web service. Following code are working only if there are data in the index
// for Auto Memos
string tempAutoMemos = response.MemosResults.ToList()[0].MemoText;
// for Visa Memos
string tempVisaMemos = response.MemosResults.ToList()[1].MemoText;
and my question is there is chance that response.MemosResults will be empty and I needed to code that exception so if response.MemosResults is empty or null then notify user with a message
We get it - no one likes a content blocker. Take one extra minute and find out why we block content.
Not exactly the question you had in mind?
Sign up for an EE membership and get your own personalized solution. With an EE membership, you can ask unlimited troubleshooting, research, or opinion questions.
if (response.MemosResults != null && response.memosResults.Coun
{
Debug.Print("Go get some data!");
}
else
{
Debug.Print("No data!");
}
The Count did the trick! Thanks.