1

我尝试在我的网络服务中使用哈希表。我的一些网络服务方法准备一些数据并将它们添加到哈希表中,然后将其返回给客户端。所以当我运行我的网络服务时会出现此错误:

The type system.collections.hashtable is not supported because it implements IDictionary.

问题是什么?我可以在 web 服务中使用 HashTable,不是吗?

4

1 回答 1

1

您不能从 Web 服务返回哈希表,因为它不能被序列化。

您可以在返回数据之前将其转换为简单的列表或数组吗?

或者: http ://tiwaripradeep.blogspot.com/2007/06/type-systemcollectionshashtable-is-not.html

于 2012-11-05T17:39:34.317 回答