System.Yaml.StringYamlDoubleQuoteEscapeExtention.YamlDoubleQuoteUnescape C# (CSharp) Méthode

YamlDoubleQuoteUnescape() public static méthode

Unescape control codes escaped with YAML double quoted string format.
public static YamlDoubleQuoteUnescape ( this s ) : string
s this
Résultat string
        public static string YamlDoubleQuoteUnescape(this string s)
        {
            return YamlDoubleQuoteEscaping.Unescape(s);
        }
StringYamlDoubleQuoteEscapeExtention