public static void Main()
string phrase = "The quick brown fox jumps over the lazy dog.";
byte[] bytesBeforeCompression = phrase.ToByteArray();
byte[] bytesAfterCompression = phrase.CompressGZip();
string result = bytesAfterCompression.DecompressGZip();
Console.WriteLine(result);