Advertisement
uniblab

Untitled

Sep 9th, 2023
1,089
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.67 KB | None | 0 0
  1. var processor = new Icod.Argh.Processor(
  2.     new Icod.Argh.Definition[] {
  3.         new Icod.Argh.Definition( "help", new System.String[] { "-h", "--help", "/help" } ),
  4.         new Icod.Argh.Definition( "copyright", new System.String[] { "-c", "--copyright", "/copyright" } ),
  5.         new Icod.Argh.Definition( "input", new System.String[] { "-i", "--input", "/input" } ),
  6.         new Icod.Argh.Definition( "output", new System.String[] { "-o", "--output", "/output" } ),
  7.         new Icod.Argh.Definition( "suffix", new System.String[] { "-s", "--suffix", "/suffix" } ),
  8.         new Icod.Argh.Definition( "trim", new System.String[] { "-t", "--trim", "/trim" } ),
  9.     },
  10.     System.StringComparer.OrdinalIgnoreCase
  11. );
  12.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement