Unity: The type LogWriter cannot be constructed

后端 未结 5 715
时光取名叫无心
时光取名叫无心 2020-12-20 20:06

For the following \"project\" I am getting a very annoying and inexplicable error when resolving Unity for DI.

InvalidOperationException - The type Lo

5条回答
  •  旧巷少年郎
    2020-12-20 20:53

    In order for Unity to construct your Performance class, it needs to know how to construct the implementation of ILogWriter.

    I cannot see anywhere in your code where you tell Unity what class to create for the ILogWriter interface, so I suspect you may need to add this.

提交回复
热议问题