Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# 中有什么方法可以确保 json 可序列化为 Dictionary 吗?一种可能的解决方案是使用 try catch in,
JsonConvert.DeserializeObject<Dictionary<string, string>>(json);
有没有更好的方法?
您可能可以使用JSON Schema进行验证。这里有一个演示页面(链接来自这篇文章)。与 XML 模式相同的原理。