RemoveEntry Method
RemoveEntry(Int32)
Remove the LargeBlobEntry
at the given index
from the
Entries. Note that this can change the indices of the
remaining entries.
C#
public void RemoveEntry(int index)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | index |
Remarks
The LargeBlobEntry
is a disposable class. This method will
call the Dispose
method for the given entry as well as
removing it from the list.
If there is no entry at the index (index >= list.Count), this method will do nothing (i.e. that is not an error).