此方法用于将当前DateTime对象的值转换为其等效的长日期字符串表示形式。
用法: public string ToLongDateString ();
返回值:此方法返回一个字符串,其中包含当前DateTime对象的长日期字符串表示形式。
以下示例程序旨在说明DateTime.ToLongDateString()方法的使用:
示例1:
// C# program to demonstrate the
// DateTime.ToLongDateString()
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// creating object of DateTime
DateTime date = new DateTime(2011, 1,
1, 4, 0, 15);
// Converting the value of the
// current DateTime object to
// its equivalent long date
// string representation.
// using ToLongDateString() method;
string value = date.ToLongDateString();
// Display the date
Console.WriteLine("String representation"+
" of date is {0}", value);
}
}
输出:
String representation of date is Saturday, 01 January 2011
示例2:
// C# program to demonstrate the
// DateTime.ToLongDateString()
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// creating object of DateTime
DateTime date = DateTime.Now;
// Converting the value of the
// current DateTime object to
// its equivalent long date
// string representation.
// using ToLongDateString() method;
string value = date.ToLongDateString();
// Display the date
Console.WriteLine("String representation "+
"of date is {0}", value);
}
}
输出:
String representation of date is Monday, 11 February 2019
参考:
- https://docs.microsoft.com/en-us/dotnet/api/system.datetime.tolongdatestring?view=netframework-4.7.2
相关用法
注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 DateTime.ToLongDateString() Method in C#。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。