Hello,
I have a NameValueLise of type <int,string>, i want to get the index of an item that is already there in the list
Csla.NameValueListBase<int, string>.NameValuePair newItem = new Csla.NameValueListBase<int,string>.NameValuePair(ID,VALUE));
int indexA = NVLIST.IndexOf(newItem);
but indexA always gets -1. The ID and VALUE assigned to newitem exist in the NVLIST.
can u guide why IndexOf is not able to get index of the item with ID and VALUE in NVLIST.
Copyright (c) Marimer LLC