We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7abd863 commit 095d108Copy full SHA for 095d108
libraries/radziplibrary/gettingstarted.md
@@ -54,7 +54,7 @@ The code snippet from __Example 1__ demonstrates how to open existing Zip archiv
54
55
using (Stream stream = File.Open("test.zip", FileMode.Open))
56
{
57
- using (ZipArchive = ZipArchive.Create(stream))
+ using (ZipArchive archive = ZipArchive.Create(stream))
58
59
// Display the list of the files in the selected zip file using the ZipArchive.Entries property.
60
}
0 commit comments