0

How Can We Zip A File In .Net Framework 1.1 Without Use Any Third Party Control...

Joel Coehoorn
  • 399,467
  • 113
  • 570
  • 794
Mitesh
  • 119
  • 1
  • 1
  • 4

2 Answers2

1

By coding everything yourself.
Or, if the MS J# runtime doesn't count as 3rd-party, you could also use that.

Lucero
  • 59,176
  • 9
  • 122
  • 152
0

Using just the .NET Framework, you can't. This will be something that will be provided in some later version of .NET (not yet released from what I could tell). However, due to J# being part of the .NET Framework, you can essentially use Java do Zip and Unzip files for you. The details are described at this site: Zip and Unzip Files in C# using J# Libraries

JasCav
  • 34,458
  • 20
  • 113
  • 170