2
votes
How do I use .Net reflection to search for a property by name ignoring case?
Try adding the scope BindingFlags like so:
var prop = Backend.GetType().GetProperty(fieldName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.IgnoreCase);
…
