Dim enUS As New CultureInfo("en-US")
Dim dtDate As Date
'TryParseExact returns a boolean (Success/Fail)
If DateTime.TryParseExact(metaDateTime, "yyyy:MM:dd HH:mm:ss", enUS, Globalization.DateTimeStyles.NoCurrentDateDefault, dtDate) then
'valid date - dtDate contains the converted date value
Else
'the metaDateTime wasn't in the correct format
End If