tags:

views:

15

answers:

1

What are the differences between the two propeties of System.Windows.Data.BindingExpression ParentBinding and ParentBindingBase?

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
I actually checked in .NET reflector and the ParentBinding property returns the base property.
Shimmy