BadScript 2
Loading...
Searching...
No Matches
HelpTextWithLineBreaks_Options.cs
Go to the documentation of this file.
2{
4 {
5 [Option(HelpText =
6 @"This is a help text description.
7It has multiple lines.
8We also want to ensure that indentation is correct.")]
9 public string StringValue { get; set; }
10
11
12 [Option(HelpText = @"This is a help text description where we want
13 the left pad after a linebreak to be honoured so that
14 we can sub-indent within a description.")]
15 public string StringValu2 { get; set; }
16
17
18 [Option(HelpText = @"This is a help text description where we want
19 The left pad after a linebreak to be honoured and the indentation to be preserved across to the next line in a way that looks pleasing")]
20 public string StringValu3 { get; set; }
21
22 }
23}