Skip to content

Commit e556ca6

Browse files
authored
docs: added using statements to code sample in index.md (#384)
1 parent 3c9dcee commit e556ca6

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

docs/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ Using this library, you can write a command line application without doing the h
6161
masking input for passwords, parsing argument syntax, validation, etc.
6262

6363
```c#
64+
using McMaster.Extensions.CommandLineUtils;
65+
using System;
66+
using System.ComponentModel.DataAnnotations;
67+
6468
class Program
6569
{
6670
public static int Main(string[] args) => CommandLineApplication.Execute<Program>(args);

0 commit comments

Comments
 (0)