Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ParseExact() [5/5]

static DateTime System.DateTime.ParseExact ( string s,
string[] formats,
IFormatProvider? provider,
DateTimeStyles style )
inlinestatic

Definition at line 986 of file DateTime.cs.

987 {
988 DateTimeFormatInfo.ValidateStyles(style);
989 if (s == null)
990 {
991 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
992 }
993 return DateTimeParse.ParseExactMultiple(s, formats, DateTimeFormatInfo.GetInstance(provider), style);
994 }

References System.Runtime.Serialization.Dictionary, System.formats, System.DateTimeParse.ParseExactMultiple(), System.s, and System.ThrowHelper.ThrowArgumentNullException().