示例#1
0
 /// <summary>
 /// Return true if the item belongs to this view.  No assumptions are
 /// made about the item. This method will behave similarly to IList.Contains().
 /// If the caller knows that the item belongs to the
 /// underlying collection, it is more efficient to call PassesFilter.
 /// </summary>
 public override bool Contains(object item)
 {
     return(ProxiedView.Contains(item));
 }