回答1For product development of any reasonably sized application that practice loose coupling and follows the SOLID principles, .NET Core's DI container is unsuited, because:
It doesn't help you in ...
<?php class A{public $b;public $c;public function A(){//TODO}public function Method(){$this->b=new B();$this->c=new C(); $this->b->Method();$this->c->Method(); //TO...