我正在尝试使用sharepoint对象模型从sharepoint日历列表项的DateandTime字段中获取数小时。
int starttime = Convert.ToInt32(item [“Start Time”]);
显然哪个返回类型错误。
请注意我如何从字段中选择时间值并转换为Int。
提前致谢。
答案 0 :(得分:0)
尝试:
DateTime starttime = Convert.ToDateTime(item["Start Time"]);
从那里开始,您有大量时间properties(Hour,Millisecond,Minute,Second)这些是整数。