2010-04-05 135 views
2

是否在ASP.NET 4.0中不推薦使用DataContract屬性WCF?我只能看到DataContractFormat屬性。DataContract屬性-WCF

我無法將DataContractFormat屬性應用於結構。

例如

[DataContractFormat] 
public struct Contact 
{ 
    public string firstName; 
    public string lastName; 
} 

它引發錯誤說DataContractFormat artribute只能在類,接口和方法中使用。

+0

添加system.servicemodel.dll到項目,它應該出現。 – 2010-04-05 07:02:17

+0

不!您必須引用System.Runtime.Serialization.dll – user274364 2010-04-05 08:16:07

回答

7

你要添加到System.Runtime.Serialization程序集的引用(右鍵單擊引用,添加REF ...)