BadScript 2
Loading...
Searching...
No Matches
AssemblyUsageAttribute.cs
Go to the documentation of this file.
1// Copyright 2005-2015 Giacomo Stelluti Scala & Contributors. All rights reserved. See License.md in the project root for license information.
2
3using System;
4using System.Runtime.InteropServices;
5
6namespace CommandLine.Text
7{
11 [AttributeUsage(AttributeTargets.Assembly)]
12 [ComVisible(false)]
14 {
20 public AssemblyUsageAttribute(string line1)
21 : base(line1) { }
22
29 public AssemblyUsageAttribute(string line1, string line2)
30 : base(line1, line2) { }
31
39 public AssemblyUsageAttribute(string line1, string line2, string line3)
40 : base(line1, line2, line3) { }
41
50 public AssemblyUsageAttribute(string line1, string line2, string line3, string line4)
51 : base(line1, line2, line3, line4) { }
52
62 public AssemblyUsageAttribute(string line1, string line2, string line3, string line4, string line5)
63 : base(line1, line2, line3, line4, line5) { }
64 }
65}
Models a multiline assembly usage text.
AssemblyUsageAttribute(string line1, string line2, string line3, string line4)
Initializes a new instance of the CommandLine.Text.AssemblyUsageAttribute class with four lines of te...
AssemblyUsageAttribute(string line1, string line2)
Initializes a new instance of the CommandLine.Text.AssemblyUsageAttribute class with two lines of tex...
AssemblyUsageAttribute(string line1)
Initializes a new instance of the CommandLine.Text.AssemblyUsageAttribute class with one line of text...
AssemblyUsageAttribute(string line1, string line2, string line3)
Initializes a new instance of the CommandLine.Text.AssemblyUsageAttribute class with three lines of t...
AssemblyUsageAttribute(string line1, string line2, string line3, string line4, string line5)
Initializes a new instance of the CommandLine.Text.AssemblyUsageAttribute class with five lines of te...
Provides base properties for creating an attribute, used to define multiple lines of text.