Created
January 2, 2020 13:27
-
-
Save 0x414c49/5863e86e6802ca68e5f8450fffd6d444 to your computer and use it in GitHub Desktop.
CLI example01
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using McMaster.Extensions.CommandLineUtils; | |
using System; | |
using System.IO; | |
namespace CSVUtil | |
{ | |
class Program | |
{ | |
public static void Main(string[] args) | |
{ | |
// init new CLI app | |
var app = new CommandLineApplication<Program>(throwOnUnexpectedArg: false); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment