LastExceed
how do transitive dependencies work?
here is a project dependency diagram generated in rider: https://i.imgur.com/yCfVEuX.png
why do only 3 other project projects have a transitive dependency on
Contenit.Interfaces
(direct dependency of LVS_Common
) even though all projects in the solution depend on LVS_Common
in some form?1 replies
✅ how can i let an interface implement a function of a super-interface, instead of shadowing it?
this doesnt compile, because
IOne.Foo
is considered a separate function that shadows ITwo.Foo
. how do i tell IOne
to provide a default implementation for ITwo.Foo
instead of shadowing it?24 replies