adamabdelhamed / PowerArgs

The ultimate .NET Standard command line argument parser
MIT License
568 stars 56 forks source link

Is there any way to set a arg name different with property name? #143

Open iron9light opened 5 years ago

iron9light commented 5 years ago

Some thing like this:

public class MyArgs
{
    [ArgLongName("Arg1")]
    public string Property1 { get; set; }
}

It's not shortcut.