mirror of
https://github.com/oliverbooth/X10D
synced 2024-11-10 03:05:42 +00:00
(#15) Clarify xmldoc summary and returns
This commit is contained in:
parent
98aaf67d4b
commit
5b46523c51
@ -10,12 +10,12 @@ namespace X10D
|
||||
public static class TimeSpanParser
|
||||
{
|
||||
/// <summary>
|
||||
/// Parses a shorthand time span string (e.g. 3w 2d 1.5h) and converts it to an instance of
|
||||
/// <see cref="TimeSpan" />.
|
||||
/// Parses a shorthand time span string (e.g. 3w 2d 1.5h) and converts it to an instance of <see cref="TimeSpan" />
|
||||
/// which represents that duration of time.
|
||||
/// </summary>
|
||||
/// <param name="input">The input string.</param>
|
||||
/// <param name="provider">The format provider.</param>
|
||||
/// <returns>Returns an instance of <see cref="TimeSpan" />.</returns>
|
||||
/// <returns>An instance of <see cref="TimeSpan" /> constructed from the parsed <paramref name="input" />.</returns>
|
||||
public static TimeSpan Parse(string input, IFormatProvider? provider = null)
|
||||
{
|
||||
const string realNumberPattern = @"([0-9]*\.[0-9]+|[0-9]+)";
|
||||
|
Loading…
Reference in New Issue
Block a user