Skip to content

Commit dbe9c82

Browse files
committed
Adding XML comments to UsageAttribute
1 parent 31b2c62 commit dbe9c82

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See doc/License.md in the project root for license information.
22

33
using System;
4-
using System.Collections.Generic;
54

65
namespace CommandLine.Text
76
{
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>
811
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = true)]
912
public sealed class UsageAttribute : Attribute
1013
{
14+
/// <summary>
15+
/// Application name, script or any means that starts current program.
16+
/// </summary>
1117
public string ApplicationAlias { get; set; }
1218
}
1319
}

0 commit comments

Comments
 (0)