我正在开发一个网站,提供足球比赛的统计数据,我想根据时区转换比赛的时间表。我创建了这个函数,但似乎没有工作。
<div class="row">
<div class="col-md-3" style="width: 100px; height: 100px; color: red"></div>
<div class="col-md-3" style="width: 100px; height: 100px; color: red"></div>
<div class="col-md-3" style="width: 100px; height: 100px; color: red"></div>
<div class="col-md-3" style="width: 100px; height: 100px; color: red"></div>
</div>
这就是我在视图中显示日期和时间的方式:
public static DateTime UtcToLocalTimeZone(DateTime argDateTime,TimeZoneInfo argTimeZoneInfo)
{
try
{
return TimeZoneInfo.ConvertTimeFromUtc(argDateTime, argTimeZoneInfo);
}
catch (Exception)
{
return argDateTime;
}
}