In my understanding, Startup
must have Configure
method. Startup
is then registered in Program.Main
.
Question
As Startup
must have Configure
, why is the Startup
class of Asp.net Core not derived from an interface or abstract class?
In my understanding, Startup
must have Configure
method. Startup
is then registered in Program.Main
.
As Startup
must have Configure
, why is the Startup
class of Asp.net Core not derived from an interface or abstract class?