我在 Unity 配置文件中注册了一个泛型类型。它可以工作,但 ReSharper 将此语法标记为红色的 INCORRECT_TYPE_PARAMETER_NUMBER 错误。有没有一种方法可以让 ReSharper 满意,而不会增加配置文件的开销?
<unity>
<type alias="IList`1" type="System.Collections.Generic.IList`1, mscorlib"/>
^^^^^^^
<type alias="List`1" type="System.Collections.Generic.List`1, mscorlib"/>
^^^^^^
<type alias="string" type="System.String, mscorlib"/>
<type alias="int" type="System.Int32, mscorlib"/>
<register type="IList`1[string]" mapTo="List`1[string], mscorlib"/>
<register type="IList`1[int]" mapTo="List`1[int], mscorlib"/>
</unity>