sharepoint dateandtime字段获取小时数

时间:2011-05-02 14:22:45

标签: sharepoint-2007

我正在尝试使用sharepoint对象模型从sharepoint日历列表项的DateandTime字段中获取数小时。

int starttime = Convert.ToInt32(item [“Start Time”]);

显然哪个返回类型错误。

请注意我如何从字段中选择时间值并转换为Int。

提前致谢。

1 个答案:

答案 0 :(得分:0)

尝试:

DateTime starttime = Convert.ToDateTime(item["Start Time"]);

从那里开始,您有大量时间propertiesHourMillisecondMinuteSecond)这些是整数。