程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> 關於.NET >> WCF分布式開發常見錯誤解決(4)

WCF分布式開發常見錯誤解決(4)

編輯:關於.NET

WCF分布式開發常見錯誤解決(4):The type or namespace name 'DataContract' could not be found DataContract找不到

我們進行WCF項目開發,自己定義數據契約的時候會出現這樣的錯誤:

DataContract、DataMember、DataMemberAttribute找不到,如圖:

The type or namespace name 'DataContract' could not be found (are you missing a using directive or an assembly reference?) E:\CodesVs2008\WCFServiceIISHostFrankXuLei\WcfServiceLib\WcfServiceLib\IService1.cs 24 6 WcfServiceLib

The type or namespace name 'DataMember' could not be found (are you missing a using directive or an assembly reference?) E:\CodesVs2008\WCFServiceIISHostFrankXuLei\WcfServiceLib\WcfServiceLib\IService1.cs 30 10 WcfServiceLib

The type or namespace name 'DataMemberAttribute' could not be found (are you missing a using directive or an assembly reference?) E:\CodesVs2008\WCFServiceIISHostFrankXuLei\WcfServiceLib\WcfServiceLib\IService1.cs 30 10 WcfServiceLib

解決辦法,在項目裡添加System.Runtime.Serialization程序集的引用。

生命引用程序集:

using System.Runtime.Serialization;

編譯即可成功。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved