Erase() public méthode

public Erase ( IntPtr rowIndex ) : void
rowIndex System.IntPtr
Résultat void
Exemple #1
0
        public void RemoveAt(int index)
        {
            if (index < 0)
            {
                throw new ArgumentOutOfRangeException();
            }

            _listHandle.Erase((IntPtr)index);
        }