using System.Collections.Generic;
using System.Data.SqlClient;
using System.Globalization;
public static void Main()
var nl = CultureInfo.CreateSpecificCulture("nl-NL");
var datum = DateTime.Parse("2018-11-15T12:47:36.1433333+01:00");
var nlTimeZone = TimeZoneInfo.FindSystemTimeZoneById("W. Europe Standard Time");
var localTime = TimeZoneInfo.ConvertTime(datum, nlTimeZone);
Console.WriteLine(localTime.ToString(nl));