Remove() public méthode

public Remove ( Group group ) : void
group Group
Résultat void
Exemple #1
0
        private void UncheckState(Index index)
        {
            lock (this.ThisLock)
            {
                if (index == null)
                {
                    return;
                }

                foreach (var group in index.Groups)
                {
                    _existManager.Remove(group);
                }
            }
        }