System.Collections.Concurrent.ConcurrentDictionary.ContainsKey(Character)

Here are the examples of the csharp api System.Collections.Concurrent.ConcurrentDictionary.ContainsKey(Character) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 Source : Gang.cs
with MIT License
from PerpetuumOnline

public bool IsMember(Character member)
        {
            return _members.ContainsKey(member);
        }

19 Source : SessionManager.cs
with MIT License
from PerpetuumOnline

public bool IsOnline(Character character)
        {
            return _charactersIndex.ContainsKey(character);
        }