Hi, Is there a way to make the serializer ignore case ? for example: I have class public class Foo { public string Bar { get; set; } } so all of the examples below will match: {"bar" : "xxx"} {"Bar" : "xxx"} {"BAR" : "xxx"} Thanks :)
Hi,
Is there a way to make the serializer ignore case ?
for example:
I have class
public class Foo
{
public string Bar { get; set; }
}
so all of the examples below will match:
{"bar" : "xxx"}
{"Bar" : "xxx"}
{"BAR" : "xxx"}
Thanks :)