Skip to content

Commit eeda78a

Browse files
XML documentation for IArgument interface (#1101)
* Add XML documentation to the IArgument interface * Fix documentation. Interface only has getter. * Make consistent with other interfaces, based on recommended standards
1 parent df93102 commit eeda78a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/System.CommandLine/IArgument.cs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,16 @@
55

66
namespace System.CommandLine
77
{
8+
/// <summary>
9+
/// Defines a symbol with an arity.
10+
/// </summary>
811
public interface IArgument :
912
ISymbol,
1013
IValueDescriptor
1114
{
15+
/// <summary>
16+
/// Gets the arity of the argument.
17+
/// </summary>
1218
IArgumentArity Arity { get; }
1319
}
1420
}

0 commit comments

Comments
 (0)