TimeSpan 有错误吗?
这将输出“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
TimeSpan.Add
不修改输入 - 它返回一个新的 TimeSpan,它是输入加上加数:TimeSpan.Add
does not modify the input - it returns a newTimeSpan
which is the input plus the addend:这不是 Timespan 中的错误,而是......在 C# 中复制结构的方式。
Not a bug in Timespan but.... in the way structures get copied in C#.