/// <summary>
        /// Get primary SID
        /// </summary>
        public uint NewSID()
        {
            // what will happen if overflow
            uint id = serialSID++;

            while (GSList.ContainsKey(id))
            {
                id = serialSID++;
            }
            return(id);
        }
 public bool ContainsKey(TKey key)
 {
     return(KeyedList.ContainsKey(key));
 }
Esempio n. 3
0
 public void ContainsKey()
 {
     Assert.IsTrue(_keyedList.ContainsKey(81));
 }