我想在Google Apps上創建聯繫人。 我用這API儘管使用「Google.GData.Contacts」,但「名稱空間名稱」聯繫人「不存在」出錯?
並參考this link
在下面的代碼我使用 「使用Google.GData.Contacts」:
using Google.GData.Contacts; // Using Google.GData.Contacts
using Google.GData.Client;
using Google.GData.Extensions;
using Google.Contacts; // at this place i am getting error
錯誤:類型或命名空間名稱「聯繫人」在名稱空間「Google」中不存在(您是否缺少程序集參考?)
我已經包含Google.GData.Contacts API。但它仍然給錯誤。
有誰能告訴我爲什麼會發生這種情況?我錯過任何彙編參考?
我想用:
Contact newContact = new Contact();
newContact.Title.Text = "Liz Doe";
「聯繫」 不以 「Google.GData.Contacts」 或 「Google.GData」 的存在。 有沒有其他方法可以使用它?
你正在編譯使用Visual Studio?您已經添加了對Google.GData.Contacts.dll的引用,對吧? – Fakrudeen
雅..我已經添加了這個DDL。而且我也在編譯代碼。使用Visual Studio 2005 – Preeti
完整源代碼示例的最終解決方案是如何工作的? – Kiquenet