I'm trying to pass a Datetime to SharePoint list. For german datetime format it works, but it needs to be variable so i tried this:
itemsList[i]["FTPDate"] = DateTime.ParseExact(entity.FTPDate.ToString("dd MMM yyyy"), "dd MMM yyyy", Culture);
but I still get an invalid data exception.
What am I doing wrong?