Как использовать TryParseExact с указанием времени и дня недели - PullRequest
0 голосов
/ 28 февраля 2020

Как бы я TryParseExact в следующий раз со днем ​​недели: 02: 31: 42 Пятница

У меня есть рабочий TryParseExact метод, но когда я использую эту строку формата, returns false: HHmmssdddd

Метод:

public DateTime? HandleStringToDateTimeExactFormat(string x, string format, CultureInfo culture = null, DateTimeStyles style = DateTimeStyles.None)
{
   DateTime? output = null;
   if(culture == null)
   {
     culture= new CultureInfo("en-US");
   }

   if (DateTime.TryParseExact(
       x,
       format,
       culture, 
       style,
       out DateTime parseOutput
     )
    )
    {
       output = parseOutput;
    }
    return output;
}
...