将ISO日期和时间更改为C#中的印度时区



如何使用C#将以下格式的日期转换为印度时区(UTC+5:30)的日期?

2012-09-13T05:08:03.151Z

怎么样

DateTime dt = DateTime.ParseExact("2012-09-13T05:08:03.151Z",
                                  "yyyy-MM-dd HH:mm:ssK",
                                  CultureInfo.InvariantCulture)

然后

var indianTime = TimeZoneInfo.ConvertTime (dt,
                     TimeZoneInfo.FindSystemTimeZoneById("India Standard Time"));

试试这个:

DateTime dt = DateTime.ParseExact("your current date string","your current date string format",null);
string IndianDT = dt.ToString("dd/MM/yyy");

现在,在IndianDT字符串中,您将获得所需的日期格式。

编辑:

在我上面的代码中:

"yyyy-MM-ddThh:MM:ss.ffZ"

替换

相关内容

  • 没有找到相关文章

最新更新