System.Collections.Generic.IEnumerable.Contains(ShengImageListViewItem)

Here are the examples of the csharp api System.Collections.Generic.IEnumerable.Contains(ShengImageListViewItem) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : ShengImageListViewItemThumbnailsCache.cs
with MIT License
from iccb1013

public bool Container(ShengImageListViewItem item)
        {
            Debug.replacedert(item != null, "ImageListViewItem 为 null");

            if (item == null)
                return false;

            return _thumbnails.Keys.Contains(item);
        }