using System.IO; namespace Image.Core { /// /// Does nothing. Using this Compressor will have no effect. /// public class NullCompressor : ICompressor { public static readonly NullCompressor Instance = new NullCompressor(); /// /// /// public void Compress(string fileName) { } public void Compress(Stream stream) { } } }