Skip to content

Commit 095d108

Browse files
committed
Added missing variable.
1 parent 7abd863 commit 095d108

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/radziplibrary/gettingstarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The code snippet from __Example 1__ demonstrates how to open existing Zip archiv
5454

5555
using (Stream stream = File.Open("test.zip", FileMode.Open))
5656
{
57-
using (ZipArchive = ZipArchive.Create(stream))
57+
using (ZipArchive archive = ZipArchive.Create(stream))
5858
{
5959
// Display the list of the files in the selected zip file using the ZipArchive.Entries property.
6060
}

0 commit comments

Comments
 (0)