System.Collections.Generic.ICollection.Contains(TParent)

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

1 Examples 7

19 Source : ImplicitCastCollection.cs
with GNU General Public License v2.0
from nesherhh

public bool Contains(TBase item)
        {
            return self.Contains((TParent)item);
        }