Skip to content

Instantly share code, notes, and snippets.

@0x414c49
Created January 2, 2020 13:27
Show Gist options
  • Save 0x414c49/5863e86e6802ca68e5f8450fffd6d444 to your computer and use it in GitHub Desktop.
Save 0x414c49/5863e86e6802ca68e5f8450fffd6d444 to your computer and use it in GitHub Desktop.
CLI example01
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