We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31b2c62 commit dbe9c82Copy full SHA for dbe9c82
1 file changed
src/CommandLine/Text/UsageAttribute.cs
@@ -1,13 +1,19 @@
1
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See doc/License.md in the project root for license information.
2
3
using System;
4
-using System.Collections.Generic;
5
6
namespace CommandLine.Text
7
{
+ /// <summary>
8
+ /// Applied to a static property that yields a sequence of <see cref="CommandLine.Text.Example"/>,
9
+ /// provides data to render usage section of help screen.
10
+ /// </summary>
11
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
12
public sealed class UsageAttribute : Attribute
13
14
15
+ /// Application name, script or any means that starts current program.
16
17
public string ApplicationAlias { get; set; }
18
}
19
0 commit comments