This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class SerializerHelper | |
{ | |
public static string Serialize<T>(T data, SerializeFormat format) | |
{ | |
switch (format) | |
{ | |
case SerializeFormat.XML: | |
return SerializeToXml(data); | |
case SerializeFormat.JSON: | |
return SerializeToJson(data); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################### | |
# Core EditorConfig Options # | |
############################### | |
root = true | |
# All files | |
[*] | |
charset = utf-8 |
OlderNewer