I was debugging a piece of code, and, to my surprise, the following lines worked correctly.
Binding binding = new Binding("Text", myObject, "PropertyName");
Binding binding = new Binding("Text", myObject, "propertyname");
The property name seems to be case insensitive, but I can't find anything about it.
Can someone tell me if I missed something, or what could be rational behind it?
source
share