/// <summary>
        /// Globals the remove item.
        /// </summary>
        /// <param name="id">The identifier.</param>
        /// <returns><c>true</c> if XXXX, <c>false</c> otherwise.</returns>
        internal bool Global_RemoveItem(string id)
        {
            if (_globalCollection.ContainsKey(id))
            {
                return(false);
            }

            _globalCollection.RemoveByKey(id);
            _globalValues.RemoveByKey(id);
            return(true);
        }