System.Collections.Generic.List.Contains(Value)

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

1 Examples 7

19 Source : MapList.cs
with MIT License
from tagcode

public bool Contains(Key key, Value value)
        {
            List<Value> values;
            return TryGetValue(key, out values) && values.Contains(value);
        }