System.Globalization.Localization.Unescape C# (CSharp) 메소드

Unescape() 보호된 메소드

protected Unescape ( string text ) : string
text string
리턴 string
        protected virtual string Unescape(string text)
        {
            return text.Trim('"')
                .Replace("\\n", "\n")
                .Replace("\\\"", "\"")
                ;
        }