在 C# 中的 MessageBox 中显示当前日期时间
我知道这是非常微不足道的,但我似乎找不到答案,因为我从未做过 C#。在谷歌上搜索但没有结果。
我试图在 C# 中的 MessageBox 中显示当前日期时间,但收到以下错误
无法将日期时间转换为字符串
。
这是代码:
DateTime current = DateTime.Now;
MessageBox.Show(current.ToString);
I know this is very trivial but I can't seem to find the answer as I have never done C#. Searched on Google but in vain.
I am trying to display current datetime in MessageBox in C# but I get following error
Cannot convert datetime into string
.
Here is the code:
DateTime current = DateTime.Now;
MessageBox.Show(current.ToString);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
ToString 是一种方法。你需要这样做:
ToString is a method. You need to do this:
您收到编译时错误,因为
ToString
是方法.ToString()
而不是属性。You are getting compile time error, because
ToString
is a method.ToString()
not a property.您忘记在
ToString
方法中添加左括号和右括号you forget to add open and close parenthesis in the
ToString
Method将
current.ToString
更改为current.ToString()
ToString 是函数而不是属性change
current.ToString
tocurrent.ToString()
ToString is a function not a property您还可以使用以下内容:
You could also use the following: