将C#枚举定义序列化为Json
问题描述:
在C#中给出以下内容:
Given the following in C#:
[Flags]
public enum MyFlags {
None = 0,
First = 1 << 0,
Second = 1 << 1,
Third = 1 << 2,
Fourth = 1 << 3
}
ServiceStack.Text中是否有任何现有方法
序列化为以下JSON?
Are there any existing methods in ServiceStack.Text
for serializing to the following JSON?
{
"MyFlags": {
"None": 0,
"First": 1,
"Second": 2,
"Third": 4,
"Fourth": 8
}
}
当前我正在使用以下例程,是否有更好的方法
Currently I'm using the routine below, are there better ways to do this?
public static string ToJson(this Type type)
{
var stringBuilder = new StringBuilder();
Array values = Enum.GetValues(type);
stringBuilder.Append(string.Format(@"{{ ""{0}"": {{", type.Name));
foreach (Enum value in values)
{
stringBuilder.Append(
string.Format(
@"""{0}"": {1},",
Enum.GetName(typeof(Highlights), value),
Convert.ChangeType(value, value.GetTypeCode())));
}
stringBuilder.Remove(stringBuilder.Length - 1, 1);
stringBuilder.Append("}}");
return stringBuilder.ToString();
}
答
最好不要填充 Dictionary< string,int>
或类型化的DTO并将其序列化。
You're better off populating a Dictionary<string,int>
or a Typed DTO and serializing that.