Search found 1 match

by Gennady46
Thu Oct 22, 2009 4:37 pm
Forum: PC Gaming
Topic: VISUAL C++, VISUAL C#
Replies: 0
Views: 2582

VISUAL C++, VISUAL C#

I have a created a class in visual C#:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ICSharpCode.SharpZipLib.Zip;

namespace SharpZip
{
public class Zip
{
public void Unzip(string fileName, string path)
{
FastZip fz = new FastZip();
fz.ExtractZip ...