Encode to Quoted-Printable?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've successfully used System.Convert.ToBase64String to convert my files to
Base64.

Now I want to do the same for Quoted-Printable but I can’t see how that to
achieve this.

Can it be done?
 
Hi,

..NET Base Class Library doesn't provide support for Quoted-Printable
encoding, however, you can find many freely available class to do that,
such as this:

#Binary to Text Encode/Decode Class - The Code Project - .NET
http://www.codeproject.com/dotnet/TextCoDec.asp


Hope this helps. Please feel free to let me know if you think the above
library doesn't work for your case.

Regards,
Walter Wang ([email protected], remove 'online.')
Microsoft Online Community Support

==================================================
When responding to posts, please "Reply to Group" via your newsreader so
that others may learn and benefit from your issue.
==================================================

This posting is provided "AS IS" with no warranties, and confers no rights.
 
Back
Top