Erase() public method

public Erase ( IntPtr rowIndex ) : void
rowIndex System.IntPtr
return void
Exemplo n.º 1
0
        public void RemoveAt(int index)
        {
            if (index < 0)
            {
                throw new ArgumentOutOfRangeException();
            }

            _listHandle.Erase((IntPtr)index);
        }