You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
当服务端与客户端存在一个声明如下的类型时
class Item { public T Value {get;set;} }
由服务端序列化一个Item source = new Item();对象并传输至客户端
客户端反序列化时生成的类型限定名称为Item.1.System.String
导致客户端无法从程序集中根据名称创建类型
The text was updated successfully, but these errors were encountered:
当服务端与客户端存在一个声明如下的类型时
class Item { public T Value {get;set;} }
由服务端序列化一个Item source = new Item();对象并传输至客户端
客户端反序列化时生成的类型限定名称为Item.1.System.String
导致客户端无法从程序集中根据名称创建类型
The text was updated successfully, but these errors were encountered: