FlickrSync.PathInfo.XmlDecode C# (CSharp) Méthode

XmlDecode() private méthode

private XmlDecode ( string text ) : string
text string
Résultat string
        private string XmlDecode(string text)
        {
            //TODO: Improve encoding
            return text.Replace("&lt;", "<").Replace("&amp;", "&");
        }