System.Yaml.StringYamlDoubleQuoteEscapeExtention.YamlDoubleQuoteUnescape C# (CSharp) 메소드

YamlDoubleQuoteUnescape() 공개 정적인 메소드

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