BadScript 2
Loading...
Searching...
No Matches
Options_With_MetaValue.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
4{
6 {
7 [Option('v', "verbose", HelpText = "Comment extensively every operation.")]
8 public bool Verbose { get; set; }
9
10 [Option('i', "input-file", MetaValue = "FILE", Required = true, HelpText = "Specify input FILE to be processed.")]
11 public string FileName { get; set; }
12 }
13}