作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何将日期时间的佛教格式转换为公历格式(例如泰国 2558 → 2015)?
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace ThailandBuddhistCalendarTest
{
class Program
{
private const string DateFormat = "yyyy-MM-dd";
private const string DateTimeOffsetFormat = "yyyy-MM-dd'T'HH:mm:sszzz";
static void Main(string[] args)
{
var ci = new CultureInfo("th-TH");
var today = DateTime.Now.ToString(DateFormat, ci); // today == "2558-05-22"
}
}
}
最佳答案
您的问题的简单答案是,使用 Culture
,它使用 GregorianCalendar
作为格式提供程序,就像 Soner Gönül 在 his answer 末尾建议的那样.
但是,不要尝试调整 DateTime
,使其 Year
属性显示 2558
而不是2015
。
即使 DateTime
没有为存储的日期使用特定的日历,它的属性也总是根据公历给出日期和时间部分。这导致以下结果:
buddhistCalendar.ToDateTime(2558,5,22,0,0,0,0) != new DateTime(2558,5,22,0,0,0,0)
但是:
buddhistCalendar.ToDateTime(2558,5,22,0,0,0,0) == new DateTime(2015,5,22,0,0,0,0)
如果您想获取特定日历的给定 DateTime
的年份或任何其他值,请使用该日历的适当方法,例如 calendar.GetYear(dateTime)
。
否则你会得到
new DateTime(2558,5,22,0,0,0,0).Year == 2558
但是:
buddhistCalendar.GetYear(new DateTime(2558,5,22,0,0,0,0)) == 3101
关于c# - 泰历 2558 年至 2015 年,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30393668/
我是一名优秀的程序员,十分优秀!