我的项目使用IoC和DI。
然而,我想知道以下内容是否是一种好的做法:
private readonly IMyService myservice;
作为类内的字段,该字段是服务的使用者。该字段是在构造函数中设置的。
I m sure I ve seen this somewhere and I ve picked up on it. However I also see:
private IMyService myservice;
这似乎就足够了。为注入的服务接口设置只读字段有什么用途吗?优点是什么?