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 に答える