Ejemplo n.º 1
0
 public static string FormatAsXml(Employee target)
 {
     return(new XElement("Employee", new XElement("Salary", target.Salary)).ToString());
 }
Ejemplo n.º 2
0
 public static string FormatAsText(Employee target)
 {
     return($"{target.Salary}円");
 }