sharepoint 日期和时间字段获取小时数

发布于 2024-11-04 09:06:23 字数 169 浏览 2 评论 0原文

我正在尝试使用共享点对象模型从共享点日历​​列表项的日期和时间字段获取小时数。

int starttime = Convert.ToInt32(item["开始时间"]);

显然这会返回类型错误。

请说明我如何从字段中选择时间值并将其转换为整数。

提前致谢。

I am trying to get hours from the DateandTime field of a sharepoint calendar listitem using sharepoint Object Model.

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

Obviously which returns type error.

Please throw some light that how i can pick Time value from the field and convert to Int.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁吢 2024-11-11 09:06:23

尝试:

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

从那里,您拥有许多时间属性 ( 小时毫秒分钟第二个)是整数。

Try:

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

From there, you have a number of time properties (Hour, Millisecond, Minute, Second) that are integers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文