compress

  1. C

    Question Compressed String Length is high

    Hi, i have a string and i encrypt it and than Compressed that string. Result is Length of the Compressed string is high. I'm using the below code snippet public static string Compress(string text) { byte[] buffer = Encoding.UTF8.GetBytes(text); MemoryStream ms...
Back
Top Bottom