我在Spring Dot Net中使用远程处理创建了服务器和客户端应用程序。
我能够将List从服务器返回到客户端。但是我无法返回List<ClassA>.
我收到错误,因为无法将System.Collections.Generic.List'1[MyClass.ClassA]
类型的对象转换为System.Collections.Generic.List'1[System.String].
类型
客户端代码包含 -
IApplicationContext ctx = ContextRegistry.GetContext();
IInterface a = (IInterface)ctx["ABC"];
List<MyClass.ClassA> obj = a.GetList();
服务器代码包含GetList方法
public List<ClassA> GetList();