how to convert yyyy-mm-dd to dd/mm/yyyy in C# test DateTime dt = DateTime.ParseExact("2017-04-25", "yyyy-MM-d", CultureInfo.InvariantCulture); string result = dt.ToSt... Read More