Assembly.GetType() fails to load List`1[[MyModel]] type from ReSharper Plugin only
问题 I have a R# plugin and a test project (not a R# test project, but a simple, plain unit-test project). In the code of the plugin I do some type resolution from serialized type information. On such type is a list of object from one of my model classes. The serialization of the type looks like this: "System.Collections.Generic.List`1[[Model.Foo, Model]], mscorlib" I load this type (or, actually, Json.NET does) with the following calls: Assembly assembly = Assembly.LoadWithPartialName