在“system.runtime.serialization.iextensibledataobject”上编译错误

时间:2013-06-18 04:54:45

标签: silverlight-4.0 compiler-errors wcf-data-services

我在SilverLight项目中使用WCF服务。但是当我编译解决方案时,我得到的错误如下:

命名空间"System.Runtime.Serialization"中不存在类型或命名空间名称"IExtensibleDataObject"(是否缺少程序集引用?)

对不起,我用中文工作,翻译在下面(来自谷歌):

Namespace "System.Runtime.Serialization" does not exist in the type or namespace name "IExtensibleDataObject" (are you missing an assembly reference?)

我已经检查过,System.Runtime.Serialization.dll已添加到项目中。 同一个项目在其他人的计算上运作良好。只是我的不能完全。

有人帮忙!

2 个答案:

答案 0 :(得分:0)

尝试:

  1. 清洁解决方案和重建解决方案
  2. 重新启动visual studio
  3. restart pc

答案 1 :(得分:0)

  1. 检查所有.cs解决方案文件是否具有相同的命名空间。
  2. 检查您的项目是否添加了System.Runtime.Serialization引用。
  3. enter image description here

    1. 在项目中加入using System.Runtime.Serialization;指令。