C#中的DateTime.ToString()方法用于将当前DateTime对象的值转换为其等效的字符串表示形式。
以下是语法-
ToString(String, IFormatProvider) ToString() ToString(IFormatProvider) ToString(String)
现在让我们看一个实现DateTime.ToString()方法的示例-
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 11, 11, 7, 11, 25); Console.WriteLine("Date = {0}", d); string str = d.ToString(); Console.WriteLine("String representation = {0}", str); } }
输出结果
这将产生以下输出-
Date = 11/11/2019 7:11:25 AM String representation = 11/11/2019 7:11:25 AM
现在让我们来看另一个实现DateTime.ToString(String)方法的示例-
using System; public class Demo { public static void Main() { DateTime d = new DateTime(2019, 11, 11, 7, 11, 25); Console.WriteLine("Date = {0}", d); string str = d.ToString("f"); Console.WriteLine("String representation = {0}", str); } }
输出结果
这将产生以下输出-
Date = 11/11/2019 7:11:25 AM String representation = Monday, November 11, 2019 7:11 AM