C# 如何在 Windows 窗体中使用月历计算天数?

发布于 2024-11-07 06:59:31 字数 315 浏览 0 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(2

凝望流年 2024-11-14 06:59:31

使用

NumberDays = (Calendar.SelectionEnd - Calendar.SelectionStart).TotalDays;

Use

NumberDays = (Calendar.SelectionEnd - Calendar.SelectionStart).TotalDays;
ぃ弥猫深巷。 2024-11-14 06:59:31
    DateTime dt1 = DateTime.Parse("5/1/2011");
    DateTime dt2 = DateTime.Parse("5/14/2011");


    private void button1_Click(object sender, EventArgs e)
    {
        int NumberDays = (int) dt2.Subtract(dt1).TotalDays;
        MessageBox.Show(NumberDays.ToString());
    }
    DateTime dt1 = DateTime.Parse("5/1/2011");
    DateTime dt2 = DateTime.Parse("5/14/2011");


    private void button1_Click(object sender, EventArgs e)
    {
        int NumberDays = (int) dt2.Subtract(dt1).TotalDays;
        MessageBox.Show(NumberDays.ToString());
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文