未验证 提交 4710133e 编写于 作者: T Tarek Mahmoud Sayed 提交者: GitHub

Add missing doc tags to TimeOnly type. (#73801)

上级 48ce77b3
......@@ -933,8 +933,10 @@ public bool TryFormat(Span<char> destination, out int charsWritten, [StringSynta
// IParsable
//
/// <inheritdoc cref="IParsable{TSelf}.Parse(string, IFormatProvider?)" />
public static TimeOnly Parse(string s, IFormatProvider? provider) => Parse(s, provider, DateTimeStyles.None);
/// <inheritdoc cref="IParsable{TSelf}.TryParse(string?, IFormatProvider?, out TSelf)" />
public static bool TryParse([NotNullWhen(true)] string? s, IFormatProvider? provider, out TimeOnly result) => TryParse(s, provider, DateTimeStyles.None, out result);
//
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册