BindingFlags.IgnoreCase ne fonctionne pas pour Type.GetProperty ()?

Imaginez ce qui suit Un type T a un champ Société. Lors de l'exécution de la méthode suivante, cela fonctionne parfaitement: Type t = typeof(T); t.GetProperty("Company") Avec l'appel suivant, je deviens nul Type t = typeof(T); t.GetProperty("company", BindingFlags.IgnoreCase) Quelqu'un a une...