私がこのConcurrentDictionaryを持っている場合:
public class User
{
public string Context { get; set; }
public bool Owner { get; set; }
}
protected static ConcurrentDictionary<User, string> OnlineUsers = new ConcurrentDictionary<User, string>();
Owner私がすでにの値を持っている場合、誰かが私がの値を取得する方法を知っていContextますか?基本的には、を使用して「検索」を実行したいと思いますContext。ありがとう。