Show / Hide Table of Contents

RemoveEntry Method

RemoveEntry(int)

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
int 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).

In this article
Back to top Generated by DocFX