示例#1
0
 internal bool TryGetUser(UInt128 uuid, out UserProfile profile)
 {
     return(_profiles.TryGetValue(uuid.ToString(), out profile));
 }
示例#2
0
        public void AddUser(UInt128 uuid, string name)
        {
            UserProfile profile = new UserProfile(uuid, name);

            _profiles.AddOrUpdate(uuid.ToString(), profile, (key, old) => profile);
        }