C# 如何在 Windows 窗体中使用月历计算天数?
我正在使用 Visual C# 2010 Express 创建一个表单,让用户选择一种汽车类型(紧凑型、标准型、豪华型),并在日历上选择要租用多长时间的日期。我似乎不知道如何计算天数来找到总成本。
我尝试了 NumberDays = (Calendar.SelectionEnd - Calendar.SelectionStart);
但收到错误“无法将类型 'SystemTimeSpan' 隐式转换为 'int'”
我还尝试将今天的日期设为开始日期日历上的选择是结束日期,但我也不知道如何计算总天数。
任何帮助将非常感激。
I'm using Visual C# 2010 Express to create a Form that has the user choose a type of car(compact, standard, luxury) and a date on the calendar for how long they are going to rent it. I can't seem to figure out how to calculate the amount of days to find the total cost.
I tried NumberDays = (Calendar.SelectionEnd - Calendar.SelectionStart);
but I get an error "Cannot implicitly convert type 'SystemTimeSpan' to 'int'"
I also tried to make today's date being the start date and a selection on the calendar being the end date but I'm not sure how to calculate the total days for that either.
Any help would be very much appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用
Use