@@ -81,7 +81,7 @@ class Options {
81
81
HelpText = " Prints all messages to standard output." )]
82
82
public bool Verbose { get ; set ; }
83
83
84
- [Option (Default = " 中文" ,
84
+ [Option (DefaultValue = " 中文" ,
85
85
HelpText = " Content language." )]
86
86
public string Language { get ; set ; }
87
87
@@ -101,7 +101,7 @@ static int Main(string[] args) {
101
101
type options = {
102
102
[< Option ('r' , " read" , Required = true , HelpText = " Input files." )> ] files : seq < string > ;
103
103
[< Option (HelpText = " Prints all messages to standard output." )> ] verbose : bool ;
104
- [< Option (Default = " русский" , HelpText = " Content language." )> ] language : string ;
104
+ [< Option (DefaultValue = " русский" , HelpText = " Content language." )> ] language : string ;
105
105
[< Value (0 , MetaName = " offset" , HelpText = " File offset." )> ] offset : int64 option ;
106
106
}
107
107
```
@@ -125,7 +125,7 @@ Class Options
125
125
HelpText:="Prints all messages to standard output.")>
126
126
Public Property Verbose As Boolean
127
127
128
- <CommandLine.Option(Default :="中文",
128
+ <CommandLine.Option(DefaultValue :="中文",
129
129
HelpText:="Content language.")>
130
130
Public Property Language As String
131
131
0 commit comments