I am working on visual c++ project.I want to inserta few c# lines of code:
using ICSharpCode.SharpZipLib.Zip;
FastZip fz = new FastZi();
fz.ExtractZip(filename,system_dir,””);
//what it does it unzips a zip file to a directory.
can anyone tell me what should I do to my vc++ properties so that it compiles and builds with c-sharp line of code.
Thank you, in advance.