How Can We Zip A File In .Net Framework 1.1 Without Use Any Third Party Contr开发者_Go百科ol...
By coding everything yourself.
Or, if the MS J# runtime doesn't count as 3rd-party, you could also use that.
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
精彩评论