sharepoint 日期和时间字段获取小时数
我正在尝试使用共享点对象模型从共享点日历列表项的日期和时间字段获取小时数。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
从那里,您拥有许多时间属性 ( 小时,毫秒,分钟,第二个)是整数。
Try:
From there, you have a number of time properties (Hour, Millisecond, Minute, Second) that are integers.