Parse exact custom time format?
问题 I can't seem to get the custom format right for my TimeSpan.ParseExact() : Time samples to be expected: 1:23:45.6 23:45.6 23:45 1:23:45 The string format I'm using: string withTenthFormat = @"[%h\:]mm\:ss[\.%f]"; Trying to have hours and fractions of seconds optionally. However using this format and an CultureInfo.InvariantCulture does lead to a FormatException . What am I missing? 回答1: I'm not aware of the ability to specify optional parts like that in a custom format string. I suggest you