Since .NET has source code exposed http://blogs.microsoft.co.il/blogs/arik/archive/2010/07/12/step-into-net-framework-4-0-source-code.aspx
Where and how could I find .NET WPF implementation of databinding ? I’d like to see how it’s implemented just by curiosity.
The best start might be by reading the code of the Binding class
That is where most of the magic is.
On a side note: you don’t need to download the source code for that. You could use Reflector or DotPeek or similar tools to reverse engineer the code. But that’s up to you.