Advertisement
elena1234

Xml

Apr 23rd, 2021
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.25 KB | None | 0 0
  1. using Logger_Exercise.Interfaces;
  2.  
  3. namespace Logger_Exercise.Loggers
  4. {
  5.     public class XmlLayout : ILayout
  6.     {
  7.         public string Format
  8.        => @"<log>
  9. <date>{0}</date>
  10. <level>{1}</level>
  11. <message>{2}</message>
  12. </log>
  13. ";
  14.     }
  15. }
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement