GetClassDeserializer<T> contains field selector by name
let field = prop != null ? null : (fields.FirstOrDefault(p =>
string.Equals(p.Name, n, StringComparison.OrdinalIgnoreCase)) // field case
sensitive third
?? fields.FirstOrDefault(p => string.Equals(p.Name, n, StringComparison.OrdinalIgnoreCase))) // field case insensitive fourth
as you can see that searches twice with OrdinalIgnoreCase - i suppose that
should be just Ordinal in the first case
Original issue reported on code.google.com by daniil.b...@gmail.com on 29 Jul 2011 at 4:22
Original issue reported on code.google.com by
daniil.b...@gmail.com
on 29 Jul 2011 at 4:22