/// <summary>
 /// Find the (first) index of an item in the wrapped collection
 /// </summary>
 /// <param name="item"></param>
 /// <returns></returns>
 public int IndexOf(T item)
 {
     return(indexedsorted.IndexOf(item));
 }