CommandLineEncoder.DecodeArgText C# (CSharp) Method

DecodeArgText() public static method

public static DecodeArgText ( string original ) : string
original string
return string
    public static string DecodeArgText(string original)
    {
        string decoded = original;

            decoded = TryDecodeNewLine(decoded);

            return decoded;
    }