@@ -81,7 +81,7 @@ class Options {
8181 HelpText = " Prints all messages to standard output." )]
8282 public bool Verbose { get ; set ; }
8383
84- [Option (Default = " 中文" ,
84+ [Option (DefaultValue = " 中文" ,
8585 HelpText = " Content language." )]
8686 public string Language { get ; set ; }
8787
@@ -101,7 +101,7 @@ static int Main(string[] args) {
101101type options = {
102102 [< Option ('r' , " read" , Required = true , HelpText = " Input files." )> ] files : seq < string > ;
103103 [< 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 ;
105105 [< Value (0 , MetaName = " offset" , HelpText = " File offset." )> ] offset : int64 option ;
106106}
107107```
@@ -125,7 +125,7 @@ Class Options
125125 HelpText:="Prints all messages to standard output.")>
126126 Public Property Verbose As Boolean
127127
128- <CommandLine.Option(Default :="中文",
128+ <CommandLine.Option(DefaultValue :="中文",
129129 HelpText:="Content language.")>
130130 Public Property Language As String
131131
0 commit comments