.net - How to use .dll class files in visual studio? -


i have download folder of .dll files codeplex.com add , use class in project don't know how use them.it zip files c# , here link: http://dotnetzip.codeplex.com/

thanks!

add reference dll , try sample code:

 using (zipfile zip = new zipfile())  {      // add map file "images" directory in zip archive      zip.addfile("c:\\images\\personal\\7440-n49th.png", "images");      // add report different directory in archive      zip.addfile("c:\\reports\\2008-regional-sales-report.pdf", "files");      zip.addfile("readme.txt");      zip.save("myzipfile.zip");  } 

Comments

Popular posts from this blog

monitor web browser programmatically in Android? -

Shrink a YouTube video to responsive width -

wpf - PdfWriter.GetInstance throws System.NullReferenceException -