Click here to Skip to main content
15,884,298 members
Articles / Programming Languages / C#

Project Tool

Rate me:
Please Sign up or sign in to vote.
4.69/5 (10 votes)
23 Sep 2007CPOL3 min read 54.5K   1.7K   73  
Backup your C# solution and projects for archive or source code sharing. Temporary or unused files are excluded.
using System;
using System.Collections.Generic;
using System.Text;
using System.IO;

namespace QiHe.CodeLib.Compress
{
    public static class Native
    {
        public static void Compress(Stream input, Stream output, CompressionMethod method, CompressionOption level)
        {
            switch (method)
            {
                case CompressionMethod.Deflate:
                    Deflate.Compress(input, output, level);
                    break;
                case CompressionMethod.Lzw:
                    Lzw.Encode(input, output);
                    break;
                default:
                    throw new Exception("Unknown Compression Method: " + method);
            }
        }

        public static void Decompress(Stream input, Stream output, CompressionMethod method)
        {
            switch (method)
            {
                case CompressionMethod.Deflate:
                    Deflate.Decompress(input, output);
                    break;
                case CompressionMethod.Lzw:
                    Lzw.Decode(input, output);
                    break;
                default:
                    throw new Exception("Unknown Compression Method: " + method);
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect YunCheDa Hangzhou
China China
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions