我想在 Google Apps 上创建联系人。我正在使用这个API
并参考此链接
在下面的代码中,我使用的是“使用 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”中都不存在“联系人”。有没有其他方法可以使用它?