- ix (Int32)
This property is read-only.
Internally, the ZipEntry instances that belong to the ZipFile are stored in a Dictionary. When you use this indexer the first time, it creates a read-only List<ZipEntry> from the Dictionary.Values Collection. If at any time you modify the set of entries in the ZipFile, either by adding an entry, removing an entry, or renaming an entry, a new List will be created, and the numeric indexes for the remaining entries may be different.
This means you cannot rename any ZipEntry from inside an enumeration of the zip file.
The index value.