如果我有这个 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
. 谢谢。