LumiSoft.Net.Core.QuotedPrintableDecode C# (CSharp) Method

QuotedPrintableDecode() public static method

quoted-printable decoder.
public static QuotedPrintableDecode ( System encoding, byte data, bool includeCRLF ) : string
encoding System Input string encoding.
data byte Data which to encode.
includeCRLF bool Specified if line breaks are included or skipped.
return string
        public static string QuotedPrintableDecode(System.Text.Encoding encoding,byte[] data,bool includeCRLF)
        {
            return encoding.GetString(QuotedPrintableDecodeB(data,includeCRLF));
        }