在 C# 中获取当前时间

Muhammad Maisam Abbas 2021年4月29日
在 C# 中获取当前时间

本教程将讨论在 C# 中使用字符串变量获取当前时间的方法。

使用 C# 中的 DateTime.Now 属性获取当前时间

DateTime 结构表示 C# 中的时间实例。DateTime 结构的 DateTime.Now 属性获取以本地时间表示的本地计算机的当前日期和时间。我们可以使用 C# 中的 DateTime.ToString() 方法DateTime.Now 属性的结果转换为字符串变量。下面的代码示例向我们展示了如何使用 C# 中的 DateTime.Now 属性在字符串变量中获取本地计算机的当前时间。

using System;

namespace get_current_time
{
    class Program
    {
        static void Main(string[] args)
        {
            string datetime = DateTime.Now.ToString("hh:mm:ss tt");
            Console.WriteLine(datetime);
        }
    }
}

输出:

02:57:57 PM

我们用 DateTime.Now 属性和 C# 中的 DateTime.ToString() 函数将我们本地机器的当前时间以 hh:mm:ss tt 格式存储在 datetime 字符串变量中。

Muhammad Maisam Abbas avatar Muhammad Maisam Abbas avatar

Maisam is a highly skilled and motivated Data Scientist. He has over 4 years of experience with Python programming language. He loves solving complex problems and sharing his results on the internet.

LinkedIn

相关文章 - Csharp DateTime