[]
        
(Showing Draft Content)

C1.Zip.C1ZipEntryCollection.Remove

Remove Method

Remove(int)

Removes an entry from the current zip file.

Declaration
public void Remove(int index)
Public Sub Remove(index As Integer)
Parameters
Type Name Description
int index

Index of the entry to remove.

Remove(string)

Removes an entry from the current zip file.

Declaration
public void Remove(string fileName)
Public Sub Remove(fileName As String)
Parameters
Type Name Description
string fileName

Name of the entry to remove (case-insensitive).

Remove(int[])

Removes several entries from the current zip file.

Declaration
public void Remove(int[] indices)
Public Sub Remove(indices As Integer())
Parameters
Type Name Description
int[] indices

Array containing the indices of the entries to remove.

Remove(string[])

Removes several entries from the current zip file.

Declaration
public void Remove(string[] entryNames)
Public Sub Remove(entryNames As String())
Parameters
Type Name Description
string[] entryNames

Array containing the names of the entries to remove.