GitCommands.GitModule.DecodeString C# (CSharp) Method

DecodeString() private static method

private static DecodeString ( string str ) : string
str string
return string
        private static string DecodeString(string str)
        {
            // decode QuotedPrintable text using .NET internal decoder
            Attachment attachment = Attachment.CreateAttachmentFromString("", str);
            return attachment.Name;
        }
GitModule