在 C# 中的 MessageBox 中显示当前日期时间

发布于 2024-12-27 01:58:35 字数 245 浏览 1 评论 0原文

我知道这是非常微不足道的,但我似乎找不到答案,因为我从未做过 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 技术交流群。

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

发布评论

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

评论(5

贩梦商人 2025-01-03 01:58:35

ToString 是一种方法。你需要这样做:

MessageBox.Show(current.ToString());

ToString is a method. You need to do this:

MessageBox.Show(current.ToString());
属性 2025-01-03 01:58:35

您收到编译时错误,因为ToString方法.ToString()而不是属性

You are getting compile time error, because ToString is a method .ToString() not a property.

-残月青衣踏尘吟 2025-01-03 01:58:35

您忘记在 ToString 方法中添加左括号和右括号

DateTime current = DateTime.Now;
MessageBox.Show(current.ToString());

you forget to add open and close parenthesis in the ToString Method

DateTime current = DateTime.Now;
MessageBox.Show(current.ToString());
与他有关 2025-01-03 01:58:35

current.ToString 更改为 current.ToString() ToString 是函数而不是属性

change current.ToString to current.ToString() ToString is a function not a property

凉世弥音 2025-01-03 01:58:35

您还可以使用以下内容:

MessageBox.Show(DateTime.Now.ToString());

You could also use the following:

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