public void RemoveAt(int index) { if (sessionItems == null) { return; } sessionItems.RemoveAt(index); }
public void RemoveAt(int index) { if (innerCollection.Keys[index] != null) { addInDeletedKeys(innerCollection.Keys[index]); } innerCollection.RemoveAt(index); }
/// <devdoc> /// <para>[To be supplied.]</para> /// </devdoc> public void RemoveAt(int index) { _sessionItems.RemoveAt(index); }