You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<param name="s">A span containing the characters that represent a date and time to convert.</param>
5409
+
<param name="format">A span containing the characters that represent a format specifier that defines the required format of <paramref name="s" />.</param>
5410
+
<param name="provider">An object that supplies culture-specific formatting information about <paramref name="s" />.</param>
5411
+
<param name="style">A bitwise combination of the enumeration values that provides additional information about <paramref name="s" />, about style elements that may be present in <paramref name="s" />, or about the conversion from <paramref name="s" /> to a <see cref="T:System.DateTime" /> value. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
5412
+
<summary>Converts the specified span representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified format, culture-specific format information, and style. The format of the string representation must match the specified format exactly or an exception is thrown.</summary>
5413
+
<returns>An object that is equivalent to the date and time contained in <paramref name="s" />, as specified by <paramref name="format" />, <paramref name="provider" />, and <paramref name="style" />.</returns>
5414
5414
<remarks>To be added.</remarks>
5415
5415
</Docs>
5416
5416
</Member>
@@ -5442,12 +5442,12 @@ The following example demonstrates the <xref:System.DateTime.Parse%28System.Stri
<param name="s">A span containing the characters that represent a date and time to convert.</param>
5446
+
<param name="formats">An array of allowable formats of <paramref name="s" />.</param>
5447
+
<param name="provider">An object that supplies culture-specific format information about <paramref name="s" />.</param>
5448
+
<param name="style">A bitwise combination of enumeration values that indicates the permitted format of <paramref name="s" />. A typical value to specify is <see cref="F:System.Globalization.DateTimeStyles.None" />.</param>
5449
+
<summary>Converts the specified span representation of a date and time to its <see cref="T:System.DateTime" /> equivalent using the specified array of formats, culture-specific format information, and style. The format of the string representation must match at least one of the specified formats exactly or an exception is thrown.</summary>
5450
+
<returns>An object that is equivalent to the date and time contained in <paramref name="s" />, as specified by <paramref name="formats" />, <paramref name="provider" />, and <paramref name="style" />.</returns>
0 commit comments