-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d744389
commit f8a15e7
Showing
4 changed files
with
73 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System.Linq; | ||
|
||
namespace YamlMap.Serialization | ||
{ | ||
internal static class SerializerExtensions | ||
{ | ||
private static readonly char[] SpecialChars = new[] { ':', '[', ']' }; | ||
|
||
/// <summary> | ||
/// Convert a object to a string that is used for serialization | ||
/// </summary> | ||
/// <param name="value"></param> | ||
/// <returns></returns> | ||
public static string ToSerializeableString(this object value) | ||
{ | ||
if (value == null) | ||
{ | ||
return null; | ||
} | ||
|
||
if (value is string s && SpecialChars.Any(c => s.Contains(c))) | ||
{ | ||
value = $"'{s}'"; | ||
} | ||
|
||
return value.ToString(); | ||
} | ||
} | ||
} |
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
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
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