What are the differences between the two propeties of System.Windows.Data.BindingExpression
ParentBinding
and ParentBindingBase
?
views:
15answers:
1
A:
It's just an artifact of inheritance. BindingExpression inherits from BindingExpressionBase. They both probably return the exact same thing but with the former being cast to Binding instead of BindingBase.
Josh Einstein
2010-03-10 03:47:56
I actually checked in .NET reflector and the ParentBinding property returns the base property.
Shimmy
2010-03-11 00:17:26