Escape() public static method

public static Escape ( string toFormat ) : string
toFormat string
return string
Ejemplo n.º 1
0
 private static Dictionary <string, string> formatKeys(IEnumerable <KeyValuePair <string, string> > toFormat)
 {
     return(toFormat.ToDictionary(kv => Xml.Escape(kv.Key), kv => kv.Value));
 }