我在使用 Newtonsoft.JsonSerializeObject方法时遇到了错误。之前有人问过这里,但与 Newtonsoft 合作的人没有回答为什么会发生这种情况。
基本上,当这样调用时SerializeObject:
string json = Newtonsoft.Json.JsonConvert.SerializeObject(from, new JsonSerializerSettings() { TypeNameHandling = TypeNameHandling.All });
我Equals在我的课程中覆盖的许多方法中出现错误:
public override bool Equals(object obj)
{
if (obj == null)
return false;
CapacityConfiguration cc = (CapacityConfiguration)obj; // <-- TypeCastException here; other Properties of the same class are sent in as parameter!
}
当然,我意识到通过这样检查来修复它很“容易”:
public override bool Equals(object obj)
{
if (obj is CapacityConfiguration == false)
return false;
CapacityConfiguration cc = (CapacityConfiguration)obj;
}
但真正的问题是: 为什么Json.Net会在类的Equals方法中传入其他类型的对象?更具体地说,Json.Net 似乎在类中发送了许多其他属性,而不是另一个相同类型的对象。
对我来说,这完全很奇怪。任何输入将不胜感激。
根据 Visual Studio,我正在使用“版本 8.0.0.0”。
更新 1
它很容易测试,因为它是可重现的:
public class JsonTestClass
{
public string Name { get; set; }
public List<int> MyIntList { get; set; }
public override bool Equals(object obj)
{
if (obj == null)
return false;
JsonTestClass jtc = (JsonTestClass)obj;
return true;
}
}
然后只需将此代码放在 Program.cs 或其他任何地方:
JsonTestClass c = new JsonTestClass();
c.Name = "test";
c.MyIntList = new List<int>();
c.MyIntList.Add(1);
string json = Newtonsoft.Json.JsonConvert.SerializeObject(c, new JsonSerializerSettings() { TypeNameHandling = TypeNameHandling.All });
你会得到 TypeCast 异常:
慕的地8271018
相关分类