Searches for a zip entry in this archive with the given name.
[Visual Basic]
Public Function GetEntry( _
   ByVal name As String _
) As ICSharpCode.SharpZipLib.Zip.ZipEntry
[C#]
public ZipEntry GetEntry(
   string name
);
Parameters
name
the name. May contain directory components separated by slashes ('/').
Return Value
the zip entry, or null if no entry with that name exists.
See Also
ZipFile Class | ZipFile Members | ICSharpCode.SharpZipLib.Zip Namespace