我试图将特定的波斯日期转换为格里高利,但没有成功。我试过下面的代码但是我得到编译器错误说:
DateTime不包含带有4个参数的构造函数。
using System.Globalization;
DateTime dt = new DateTime(year, month, day, new PersianCalendar());
我也尝试过以下方式,但是我得到了ConvertToGregorian
函数而不是格里高利日期的相同波斯日期(以下代码中的obj):
public static DateTime ConvertToGregorian(this DateTime obj)
{
GregorianCalendar gregorian = new GregorianCalendar();
int y = gregorian.GetYear(obj);
int m = gregorian.GetMonth(obj);
int d = gregorian.GetDayOfMonth(obj);
DateTime gregorianDate = new DateTime(y, m, d);
var result = gregorianDate.ToString(CultureInfo.InvariantCulture);
DateTime dt = Convert.ToDateTime(result);
return dt;
}
请注意我的CultureInfo.InvariantCulture
是美国英语。
答案 0 :(得分:1)
正如Clockwork-Muse所说,DateTime不会保留对其转换日历的引用,或者应该显示为,因此必须在DateTime对象之外维护此信息。这是一个示例解决方案:
using System;
using System.Globalization;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// Prepare to write the date and time data.
string FileName = string.Format(@"C:\users\public\documents\{0}.txt", Guid.NewGuid());
StreamWriter sw = new StreamWriter(FileName);
//Create a Persian calendar class
PersianCalendar pc = new PersianCalendar();
// Create a date using the Persian calendar.
DateTime wantedDate = pc.ToDateTime(1395, 4, 22, 12, 30, 0, 0);
sw.WriteLine("Gregorian Calendar: {0:O} ", wantedDate);
sw.WriteLine("Persian Calendar: {0}, {1}/{2}/{3} {4}:{5}:{6}\n",
pc.GetDayOfWeek(wantedDate),
pc.GetMonth(wantedDate),
pc.GetDayOfMonth(wantedDate),
pc.GetYear(wantedDate),
pc.GetHour(wantedDate),
pc.GetMinute(wantedDate),
pc.GetSecond(wantedDate));
sw.Close();
}
}
}
结果是:
阳历:2016-07-12T12:30:00.0000000
波斯日历:1395年4月22日星期二12:30:0
读取格式规范“O”时,格里高利结果缺少任何时区指示,这意味着DateTime的“种类”是“未指定”。如果原始海报知道并关心与日期相关的时区,则应进行调整。