TimeSpan 有错误吗?

发布于 2024-09-19 07:54:28 字数 337 浏览 2 评论 0原文

这将输出“0”:

TimeSpan span = TimeSpan.Zero;
span.Add(TimeSpan.FromMinutes(5));
Console.WriteLine(span.TotalSeconds);   -----> 

但是,这将输出“300”:

TimeSpan span = TimeSpan.Zero.Add(TimeSpan.FromMinutes(5));
Console.WriteLine(span.TotalSeconds);   -----> 

这是一个已知的错误吗?

This will output "0":

TimeSpan span = TimeSpan.Zero;
span.Add(TimeSpan.FromMinutes(5));
Console.WriteLine(span.TotalSeconds);   -----> 

However, this will output "300":

TimeSpan span = TimeSpan.Zero.Add(TimeSpan.FromMinutes(5));
Console.WriteLine(span.TotalSeconds);   -----> 

Is this a known bug?

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

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

发布评论

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

评论(2

思慕 2024-09-26 07:54:28

TimeSpan.Add不修改输入 - 它返回一个新的 TimeSpan,它是输入加上加数:

备注

返回值必须介于
TimeSpan.MinValue 和
时间跨度.MaxValue;否则,一个
抛出异常。

返回值是一个新的TimeSpan;
原始 TimeSpan 未修改。

TimeSpan.Add does not modify the input - it returns a new TimeSpan which is the input plus the addend:

Remarks

The return value must be between
TimeSpan.MinValue and
TimeSpan.MaxValue; otherwise, an
exception is thrown.

The return value is a new TimeSpan;
the original TimeSpan is not modified.

不再见 2024-09-26 07:54:28

这不是 Timespan 中的错误,而是......在 C# 中复制结构的方式。

Not a bug in Timespan but.... in the way structures get copied in C#.

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