Skip to content

Instantly share code, notes, and snippets.

@CristianoRC
Created January 13, 2019 02:50
Show Gist options
  • Save CristianoRC/88f5bf190d47c7d9c351af4aec9f27c1 to your computer and use it in GitHub Desktop.
Save CristianoRC/88f5bf190d47c7d9c351af4aec9f27c1 to your computer and use it in GitHub Desktop.
using CommandLine;
namespace parametros
{
public class Options
{
[Option('v', "verbose", Required = false, HelpText = "Executar mostrando detalhes")]
public bool Verbose { get; set; }
[Option('c', "color", Required = false, HelpText = "Cor da fonte")]
public string Color { get; set; }
[Option('t', "title", Required = true, HelpText = "Título para mostrar em modo 'verboso'")]
public string Title { get; set; }
[Option('n', "name", Required = true, HelpText = "Seu nome Completo ex. 'Cristiano Cunha'")]
public string Name { get; set; }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment