4

我在 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>
4

1 回答 1

-1

您是否尝试过使用 mscorlib 的完整程序集名称(包括程序集版本、公钥令牌等)?

于 2013-01-14T22:54:42.880 回答