I'm using avalondock 2.0 dll in my solution and I need to change IOverlayWindowHost.GetDropAreas
method from DockingManager.cs at another project.
But, I don't want to do this at the source file. The method is not virtual and I can't just override it like this
class CustomDockingManager : DockingManager
{
override IEnumerable<IDropArea> GetDropAreas(LayoutFloatingWindowControl draggingWindow)
{
//some changes
}
}