[]
Removes an entry from the current zip file.
public void Remove(int index)
| Type | Name | Description |
|---|---|---|
| int | index | Index of the entry to remove. |
Removes an entry from the current zip file.
public void Remove(string fileName)
| Type | Name | Description |
|---|---|---|
| string | fileName | Name of the entry to remove (case-insensitive). |
Removes several entries from the current zip file.
public void Remove(int[] indices)
| Type | Name | Description |
|---|---|---|
| int[] | indices | Array containing the indices of the entries to remove. |
Removes several entries from the current zip file.
public void Remove(string[] entryNames)
| Type | Name | Description |
|---|---|---|
| string[] | entryNames | Array containing the names of the entries to remove. |