作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道要向我的项目添加什么(导入?引用?)以便能够将 Where()- 和 When()-methods 用于 Google 日历。
代码:
Where eventLocation = new Where();
eventLocation.ValueString = "South Tennis Courts";
entry.Locations.Add(eventLocation);
When eventTime = new When(DateTime.Now, DateTime.Now.AddHours(2));
entry.Times.Add(eventTime);
Error 1 The type or namespace name 'Where' could not be found (are you missing a using directive or an assembly reference?)
Error 3 The type or namespace name 'When' could not be found (are you missing a using directive or an assembly reference?)
using Google.GData.Client;
using Google.GData.Calendar;
using Google.GData.Extensions;
using Google.GData.AccessControl;
最佳答案
Google API doc page for the Where
class列出您需要添加为引用的 DLL 以及该程序集中的命名空间:
Namespace: Google.GData.Extensions
Assembly: Google.GData.Extensions (in Google.GData.Extensions.dll)
关于c# - Google API Where() 和 When() 命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22919244/
我是一名优秀的程序员,十分优秀!