gpt4 book ai didi

c# - 泰历 2558 年至 2015 年

转载 作者:太空狗 更新时间:2023-10-29 21:49:46 26 4
gpt4 key购买 nike

如何将日期时间的佛教格式转换为公历格式(例如泰国 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/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com