📄 program.cs
字号:
using System;
using System.Globalization;
using System.Threading;
namespace DateFormatting
{
class Program
{
static void Main()
{
DateTime d = new DateTime(2008, 02, 14);
// for a non-US setting:
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
// current culture
Console.WriteLine(d.ToLongDateString());
// use IFormatProvider
Console.WriteLine(d.ToString("D", new CultureInfo("fr-FR")));
// use culture of thread
CultureInfo ci = Thread.CurrentThread.CurrentCulture;
Console.WriteLine("{0}: {1}", ci.ToString(), d.ToString("D"));
ci = new CultureInfo("es-ES");
Thread.CurrentThread.CurrentCulture = ci;
Console.WriteLine("{0: {1}", ci.ToString(), d.ToString("D"));
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -